ASCII / Unicode Converter

Convert character to code and code to character.

Developer

Convert between characters and their numeric codes (ASCII decimal, hex, Unicode). Enter a character to see its code, or enter a decimal/hex code to see the character. Useful for encoding and escape sequences. Runs in your browser.

About ASCII / Unicode Converter

Every character has a numeric code: ASCII (0–127) or Unicode code point. This tool converts a character to its decimal and hex values, or a code (decimal, hex, or U+xxxx) to the corresponding character. Handy for escape sequences, debugging encoding, and documentation.

How to use

  1. Character → Code: Type or paste a character; the result updates and shows decimal, hex, and Unicode.
  2. Code → Character: Enter a number (e.g. 65), hex (0x41 or U+0041), then click Convert.

Frequently Asked Questions

What is the difference between ASCII and Unicode?
ASCII covers 0–127 (7-bit). Unicode assigns a code point to almost every character; this tool shows both decimal and hex (U+xxxx) for any character.
Is my input sent to a server?
No. Conversion runs entirely in your browser.
Can I convert multiple characters?
Yes. Enter a string; the tool shows the first character in detail. For full string you can use Character & Byte Count or process one char at a time.