Full 0-255 decimal, hex, binary, and character mapping
This table maps each ASCII character (0-255) to its decimal, hexadecimal, and binary representations. Use it when you need to quickly look up a character code during debugging, encoding work, or learning how computers represent text.
Columns: Dec (decimal number) | Hex (hexadecimal) | Bin (8-bit binary) | Char (the character, or control code name for values 0-31)
Quick tip: The decimal value for uppercase 'A' is 65, lowercase 'a' is 97. The difference between uppercase and lowercase is always 32 — that's bit 5 in the binary representation.
| Dec | Hex | Binary | Character |
|---|
Here are the ASCII values developers and students look up most often: