asciioo 🤧
A simple VS Code extension for converting between ASCII text and hexadecimal representations.
Features
This extension provides two main conversion commands:
- ASCII to Hex: Converts selected ASCII text to its hexadecimal representation
- Hex to ASCII: Converts selected hexadecimal values to ASCII text
How to Use
- Select the text you want to convert in your editor
- Open the Command Palette (
Ctrl+Shift+P or Cmd+Shift+P )
- Type either:
- "ASCII to Hex" to convert ASCII text to hexadecimal
- "Hex to ASCII" to convert hexadecimal to ASCII text
- The selected text will be replaced with the converted result
Examples
ASCII to Hex conversion:
- Input:
Hello
- Output:
48656c6c6f
Hex to ASCII conversion:
- Input:
48656c6c6f
- Output:
Hello
Install
VSIX
- Download the
.vsix file from the latest GitHub release
- On VSCode, press
Ctrl + Shift + P
- Type
>Install from VSIX
- Navigate to
.vsix file location
- Select the
.vsix file
Git
- Clone the project
cd ~/
git clone git@github.com:franciscoamado/asciioo.git
cd asciioo
- Installation with
npm :
npm run install-ext
Known Issues
- Hex to ASCII conversion expects valid hexadecimal input (spaces are automatically removed)
- Non-printable ASCII characters may not display correctly in the editor
Enjoy converting between ASCII and hex!
| |