A VS Code extension that displays the Unicode code point, decimal value, and character name of the character at the cursor position in the status bar.
- Shows
U+0041 (65) LATIN CAPITAL LETTER Astyle information in the status bar - Updates in real-time as you move the cursor
- Handles surrogate pairs and supplementary plane characters (emoji, CJK, etc.)
- Shows
EOLat end of line andEOFat end of file - Supports Unicode 17 character names
Simply move your cursor over any character and look at the right side of the status bar.
| Character | Status Bar Display |
|---|---|
A |
U+0041 (65) LATIN CAPITAL LETTER A |
€ |
U+20AC (8364) EURO SIGN |
😀 |
U+1F600 (128512) GRINNING FACE |
| Tab | U+0009 (9) CHARACTER TABULATION |
- Node.js (v18+)
- npm (included with Node.js)
npm installnpm run compilenpm run watchPress F5 in VS Code to launch the Extension Development Host with the extension loaded. The default build task (npm: watch) runs automatically as a pre-launch step.
-
Build the VSIX:
npm run package
-
Install in VS Code:
code --install-extension show-charcode-0.1.0.vsix
Or use Extensions > ⋯ > Install from VSIX… in VS Code.
- Clone the repo and run
npm install - Open the folder in VS Code
- Press F5 to launch with the extension active