ASCII Reference Table
String converter, searchable table, click to copy
📝 Text → ASCII Codes
🔢 ASCII Codes → Text
Quick Character Lookup
Enter a value in any field to see all conversions
Uppercase A
Letter • Printable
| Dec | Hex | Binary | Char | Description | Type |
|---|
About ASCII
ASCII (American Standard Code for Information Interchange) is a character encoding standard that uses 7 bits to represent 128 characters: 33 control characters (0-31 and 127) and 95 printable characters (32-126).
The printable characters include digits 0-9 (codes 48-57), uppercase letters A-Z (65-90), lowercase letters a-z (97-122), and various punctuation and symbols.
Common Uses in Programming
0x00 (NUL) — String terminator in C
0x0A (LF) — Unix/Linux line ending
0x0D (CR) — Part of Windows line ending (CRLF)
0x09 (TAB) — Horizontal tab character
0x1B (ESC) — ANSI escape sequences
0x20 (Space) — First printable character
0x7F (DEL) — Delete character
A-Z / a-z differ by 32 — Case conversion trick