Look up any of the 256 ASCII and Latin-1 characters by decimal, hex, octal, or binary, with full names, control abbreviations, and one-click copy.
A byte is a number, and every text format eventually has to decide what number 65 means. ASCII settled it in 1963: 65 is the capital letter A. This table lists what all 256 byte values from 0 to 255 mean, spanning the original 128-value ASCII standard and the Latin-1 Supplement that fills the upper half with accented letters and symbols plain ASCII can't reach.
Each row shows the same byte in four notations at once: decimal, hexadecimal, octal and 8-bit binary, next to the character itself and its formal Unicode name. The first 32 codes and 127 have no printable glyph. Those rows show a three-letter abbreviation like LF or ESC instead, carried over from the original 1963 teletype control set.
65, a hex byte like 41 or 0x41, part of a name like grave, or paste the character itself.letter, to see only the accented Latin letters.Control (33 codes: 0–31 plus 127 DEL) and Printable (95 codes: 32–126) together make up the 128-value ASCII standard from 1963. Extended (128 codes: 128–255) is the Latin-1 Supplement: C1 control codes nobody actually types, followed by the accented Latin letters (À, é, ü) and symbols (§, ©, ×) that plain ASCII can't hold in a single byte. 256 rows total, all bundled as a static array with no network request.
LF copies the real invisible byte, not the letters "LF". Pasting it into a plain-text field shows nothing, which is correct, not broken.\n, \t, \r and five others, because those are the ones a working programmer actually types by hand.@, jumps straight to that one row through an exact-glyph match, separate from the substring name search.zzz, shows "No characters match your search." rather than an empty page.256 of 256 characters
| Dec | Hex | Char | Name | Copy |
|---|---|---|---|---|
| 0 | 0x00 | NUL | Null(\0) | |
| 1 | 0x01 | SOH | Start of Heading | |
| 2 | 0x02 | STX | Start of Text | |
| 3 | 0x03 | ETX | End of Text | |
| 4 | 0x04 | EOT | End of Transmission | |
| 5 | 0x05 | ENQ | Enquiry | |
| 6 | 0x06 | ACK | Acknowledge | |
| 7 | 0x07 | BEL | Bell(\a) | |
| 8 | 0x08 | BS | Backspace(\b) | |
| 9 | 0x09 | HT | Horizontal Tab(\t) | |
| 10 | 0x0A | LF | Line Feed(\n) | |
| 11 | 0x0B | VT | Vertical Tab(\v) | |
| 12 | 0x0C | FF | Form Feed(\f) | |
| 13 | 0x0D | CR | Carriage Return(\r) | |
| 14 | 0x0E | SO | Shift Out | |
| 15 | 0x0F | SI | Shift In | |
| 16 | 0x10 | DLE | Data Link Escape | |
| 17 | 0x11 | DC1 | Device Control 1 (XON) | |
| 18 | 0x12 | DC2 | Device Control 2 | |
| 19 | 0x13 | DC3 | Device Control 3 (XOFF) | |
| 20 | 0x14 | DC4 | Device Control 4 | |
| 21 | 0x15 | NAK | Negative Acknowledge | |
| 22 | 0x16 | SYN | Synchronous Idle | |
| 23 | 0x17 | ETB | End of Transmission Block | |
| 24 | 0x18 | CAN | Cancel | |
| 25 | 0x19 | EM | End of Medium | |
| 26 | 0x1A | SUB | Substitute | |
| 27 | 0x1B | ESC | Escape | |
| 28 | 0x1C | FS | File Separator | |
| 29 | 0x1D | GS | Group Separator | |
| 30 | 0x1E | RS | Record Separator | |
| 31 | 0x1F | US | Unit Separator | |
| 32 | 0x20 | ␣ | Space | |
| 33 | 0x21 | ! | Exclamation Mark | |
| 34 | 0x22 | " | Quotation Mark | |
| 35 | 0x23 | # | Number Sign | |
| 36 | 0x24 | $ | Dollar Sign | |
| 37 | 0x25 | % | Percent Sign | |
| 38 | 0x26 | & | Ampersand | |
| 39 | 0x27 | ' | Apostrophe | |
| 40 | 0x28 | ( | Left Parenthesis | |
| 41 | 0x29 | ) | Right Parenthesis | |
| 42 | 0x2A | * | Asterisk | |
| 43 | 0x2B | + | Plus Sign | |
| 44 | 0x2C | , | Comma | |
| 45 | 0x2D | - | Hyphen-Minus | |
| 46 | 0x2E | . | Full Stop | |
| 47 | 0x2F | / | Solidus | |
| 48 | 0x30 | 0 | Digit Zero | |
| 49 | 0x31 | 1 | Digit One | |
| 50 | 0x32 | 2 | Digit Two | |
| 51 | 0x33 | 3 | Digit Three | |
| 52 | 0x34 | 4 | Digit Four | |
| 53 | 0x35 | 5 | Digit Five | |
| 54 | 0x36 | 6 | Digit Six | |
| 55 | 0x37 | 7 | Digit Seven | |
| 56 | 0x38 | 8 | Digit Eight | |
| 57 | 0x39 | 9 | Digit Nine | |
| 58 | 0x3A | : | Colon | |
| 59 | 0x3B | ; | Semicolon | |
| 60 | 0x3C | < | Less-Than Sign | |
| 61 | 0x3D | = | Equals Sign | |
| 62 | 0x3E | > | Greater-Than Sign | |
| 63 | 0x3F | ? | Question Mark | |
| 64 | 0x40 | @ | Commercial At | |
| 65 | 0x41 | A | Latin Capital Letter A | |
| 66 | 0x42 | B | Latin Capital Letter B | |
| 67 | 0x43 | C | Latin Capital Letter C | |
| 68 | 0x44 | D | Latin Capital Letter D | |
| 69 | 0x45 | E | Latin Capital Letter E | |
| 70 | 0x46 | F | Latin Capital Letter F | |
| 71 | 0x47 | G | Latin Capital Letter G | |
| 72 | 0x48 | H | Latin Capital Letter H | |
| 73 | 0x49 | I | Latin Capital Letter I | |
| 74 | 0x4A | J | Latin Capital Letter J | |
| 75 | 0x4B | K | Latin Capital Letter K | |
| 76 | 0x4C | L | Latin Capital Letter L | |
| 77 | 0x4D | M | Latin Capital Letter M | |
| 78 | 0x4E | N | Latin Capital Letter N | |
| 79 | 0x4F | O | Latin Capital Letter O | |
| 80 | 0x50 | P | Latin Capital Letter P | |
| 81 | 0x51 | Q | Latin Capital Letter Q | |
| 82 | 0x52 | R | Latin Capital Letter R | |
| 83 | 0x53 | S | Latin Capital Letter S | |
| 84 | 0x54 | T | Latin Capital Letter T | |
| 85 | 0x55 | U | Latin Capital Letter U | |
| 86 | 0x56 | V | Latin Capital Letter V | |
| 87 | 0x57 | W | Latin Capital Letter W | |
| 88 | 0x58 | X | Latin Capital Letter X | |
| 89 | 0x59 | Y | Latin Capital Letter Y | |
| 90 | 0x5A | Z | Latin Capital Letter Z | |
| 91 | 0x5B | [ | Left Square Bracket | |
| 92 | 0x5C | \ | Reverse Solidus | |
| 93 | 0x5D | ] | Right Square Bracket | |
| 94 | 0x5E | ^ | Circumflex Accent | |
| 95 | 0x5F | _ | Low Line | |
| 96 | 0x60 | ` | Grave Accent | |
| 97 | 0x61 | a | Latin Small Letter a | |
| 98 | 0x62 | b | Latin Small Letter b | |
| 99 | 0x63 | c | Latin Small Letter c | |
| 100 | 0x64 | d | Latin Small Letter d | |
| 101 | 0x65 | e | Latin Small Letter e | |
| 102 | 0x66 | f | Latin Small Letter f | |
| 103 | 0x67 | g | Latin Small Letter g | |
| 104 | 0x68 | h | Latin Small Letter h | |
| 105 | 0x69 | i | Latin Small Letter i | |
| 106 | 0x6A | j | Latin Small Letter j | |
| 107 | 0x6B | k | Latin Small Letter k | |
| 108 | 0x6C | l | Latin Small Letter l | |
| 109 | 0x6D | m | Latin Small Letter m | |
| 110 | 0x6E | n | Latin Small Letter n | |
| 111 | 0x6F | o | Latin Small Letter o | |
| 112 | 0x70 | p | Latin Small Letter p | |
| 113 | 0x71 | q | Latin Small Letter q | |
| 114 | 0x72 | r | Latin Small Letter r | |
| 115 | 0x73 | s | Latin Small Letter s | |
| 116 | 0x74 | t | Latin Small Letter t | |
| 117 | 0x75 | u | Latin Small Letter u | |
| 118 | 0x76 | v | Latin Small Letter v | |
| 119 | 0x77 | w | Latin Small Letter w | |
| 120 | 0x78 | x | Latin Small Letter x | |
| 121 | 0x79 | y | Latin Small Letter y | |
| 122 | 0x7A | z | Latin Small Letter z | |
| 123 | 0x7B | { | Left Curly Bracket | |
| 124 | 0x7C | | | Vertical Line | |
| 125 | 0x7D | } | Right Curly Bracket | |
| 126 | 0x7E | ~ | Tilde | |
| 127 | 0x7F | DEL | Delete | |
| 128 | 0x80 | PAD | Padding Character | |
| 129 | 0x81 | HOP | High Octet Preset | |
| 130 | 0x82 | BPH | Break Permitted Here | |
| 131 | 0x83 | NBH | No Break Here | |
| 132 | 0x84 | IND | Index | |
| 133 | 0x85 | NEL | Next Line | |
| 134 | 0x86 | SSA | Start of Selected Area | |
| 135 | 0x87 | ESA | End of Selected Area | |
| 136 | 0x88 | HTS | Character Tabulation Set | |
| 137 | 0x89 | HTJ | Character Tabulation With Justification | |
| 138 | 0x8A | VTS | Line Tabulation Set | |
| 139 | 0x8B | PLD | Partial Line Forward | |
| 140 | 0x8C | PLU | Partial Line Backward | |
| 141 | 0x8D | RI | Reverse Line Feed | |
| 142 | 0x8E | SS2 | Single Shift Two | |
| 143 | 0x8F | SS3 | Single Shift Three | |
| 144 | 0x90 | DCS | Device Control String | |
| 145 | 0x91 | PU1 | Private Use One | |
| 146 | 0x92 | PU2 | Private Use Two | |
| 147 | 0x93 | STS | Set Transmit State | |
| 148 | 0x94 | CCH | Cancel Character | |
| 149 | 0x95 | MW | Message Waiting | |
| 150 | 0x96 | SPA | Start of Protected Area | |
| 151 | 0x97 | EPA | End of Protected Area | |
| 152 | 0x98 | SOS | Start of String | |
| 153 | 0x99 | SGCI | Single Graphic Character Introducer | |
| 154 | 0x9A | SCI | Single Character Introducer | |
| 155 | 0x9B | CSI | Control Sequence Introducer | |
| 156 | 0x9C | ST | String Terminator | |
| 157 | 0x9D | OSC | Operating System Command | |
| 158 | 0x9E | PM | Privacy Message | |
| 159 | 0x9F | APC | Application Program Command | |
| 160 | 0xA0 | ␣ | No-Break Space | |
| 161 | 0xA1 | ¡ | Inverted Exclamation Mark | |
| 162 | 0xA2 | ¢ | Cent Sign | |
| 163 | 0xA3 | £ | Pound Sign | |
| 164 | 0xA4 | ¤ | Currency Sign | |
| 165 | 0xA5 | ¥ | Yen Sign | |
| 166 | 0xA6 | ¦ | Broken Bar | |
| 167 | 0xA7 | § | Section Sign | |
| 168 | 0xA8 | ¨ | Diaeresis | |
| 169 | 0xA9 | © | Copyright Sign | |
| 170 | 0xAA | ª | Feminine Ordinal Indicator | |
| 171 | 0xAB | « | Left-Pointing Double Angle Quotation Mark | |
| 172 | 0xAC | ¬ | Not Sign | |
| 173 | 0xAD | | Soft Hyphen | |
| 174 | 0xAE | ® | Registered Sign | |
| 175 | 0xAF | ¯ | Macron | |
| 176 | 0xB0 | ° | Degree Sign | |
| 177 | 0xB1 | ± | Plus-Minus Sign | |
| 178 | 0xB2 | ² | Superscript Two | |
| 179 | 0xB3 | ³ | Superscript Three | |
| 180 | 0xB4 | ´ | Acute Accent | |
| 181 | 0xB5 | µ | Micro Sign | |
| 182 | 0xB6 | ¶ | Pilcrow Sign | |
| 183 | 0xB7 | · | Middle Dot | |
| 184 | 0xB8 | ¸ | Cedilla | |
| 185 | 0xB9 | ¹ | Superscript One | |
| 186 | 0xBA | º | Masculine Ordinal Indicator | |
| 187 | 0xBB | » | Right-Pointing Double Angle Quotation Mark | |
| 188 | 0xBC | ¼ | Vulgar Fraction One Quarter | |
| 189 | 0xBD | ½ | Vulgar Fraction One Half | |
| 190 | 0xBE | ¾ | Vulgar Fraction Three Quarters | |
| 191 | 0xBF | ¿ | Inverted Question Mark | |
| 192 | 0xC0 | À | Latin Capital Letter A With Grave | |
| 193 | 0xC1 | Á | Latin Capital Letter A With Acute | |
| 194 | 0xC2 | Â | Latin Capital Letter A With Circumflex | |
| 195 | 0xC3 | Ã | Latin Capital Letter A With Tilde | |
| 196 | 0xC4 | Ä | Latin Capital Letter A With Diaeresis | |
| 197 | 0xC5 | Å | Latin Capital Letter A With Ring Above | |
| 198 | 0xC6 | Æ | Latin Capital Letter Ae | |
| 199 | 0xC7 | Ç | Latin Capital Letter C With Cedilla | |
| 200 | 0xC8 | È | Latin Capital Letter E With Grave | |
| 201 | 0xC9 | É | Latin Capital Letter E With Acute | |
| 202 | 0xCA | Ê | Latin Capital Letter E With Circumflex | |
| 203 | 0xCB | Ë | Latin Capital Letter E With Diaeresis | |
| 204 | 0xCC | Ì | Latin Capital Letter I With Grave | |
| 205 | 0xCD | Í | Latin Capital Letter I With Acute | |
| 206 | 0xCE | Î | Latin Capital Letter I With Circumflex | |
| 207 | 0xCF | Ï | Latin Capital Letter I With Diaeresis | |
| 208 | 0xD0 | Ð | Latin Capital Letter Eth | |
| 209 | 0xD1 | Ñ | Latin Capital Letter N With Tilde | |
| 210 | 0xD2 | Ò | Latin Capital Letter O With Grave | |
| 211 | 0xD3 | Ó | Latin Capital Letter O With Acute | |
| 212 | 0xD4 | Ô | Latin Capital Letter O With Circumflex | |
| 213 | 0xD5 | Õ | Latin Capital Letter O With Tilde | |
| 214 | 0xD6 | Ö | Latin Capital Letter O With Diaeresis | |
| 215 | 0xD7 | × | Multiplication Sign | |
| 216 | 0xD8 | Ø | Latin Capital Letter O With Stroke | |
| 217 | 0xD9 | Ù | Latin Capital Letter U With Grave | |
| 218 | 0xDA | Ú | Latin Capital Letter U With Acute | |
| 219 | 0xDB | Û | Latin Capital Letter U With Circumflex | |
| 220 | 0xDC | Ü | Latin Capital Letter U With Diaeresis | |
| 221 | 0xDD | Ý | Latin Capital Letter Y With Acute | |
| 222 | 0xDE | Þ | Latin Capital Letter Thorn | |
| 223 | 0xDF | ß | Latin Small Letter Sharp S | |
| 224 | 0xE0 | à | Latin Small Letter A With Grave | |
| 225 | 0xE1 | á | Latin Small Letter A With Acute | |
| 226 | 0xE2 | â | Latin Small Letter A With Circumflex | |
| 227 | 0xE3 | ã | Latin Small Letter A With Tilde | |
| 228 | 0xE4 | ä | Latin Small Letter A With Diaeresis | |
| 229 | 0xE5 | å | Latin Small Letter A With Ring Above | |
| 230 | 0xE6 | æ | Latin Small Letter Ae | |
| 231 | 0xE7 | ç | Latin Small Letter C With Cedilla | |
| 232 | 0xE8 | è | Latin Small Letter E With Grave | |
| 233 | 0xE9 | é | Latin Small Letter E With Acute | |
| 234 | 0xEA | ê | Latin Small Letter E With Circumflex | |
| 235 | 0xEB | ë | Latin Small Letter E With Diaeresis | |
| 236 | 0xEC | ì | Latin Small Letter I With Grave | |
| 237 | 0xED | í | Latin Small Letter I With Acute | |
| 238 | 0xEE | î | Latin Small Letter I With Circumflex | |
| 239 | 0xEF | ï | Latin Small Letter I With Diaeresis | |
| 240 | 0xF0 | ð | Latin Small Letter Eth | |
| 241 | 0xF1 | ñ | Latin Small Letter N With Tilde | |
| 242 | 0xF2 | ò | Latin Small Letter O With Grave | |
| 243 | 0xF3 | ó | Latin Small Letter O With Acute | |
| 244 | 0xF4 | ô | Latin Small Letter O With Circumflex | |
| 245 | 0xF5 | õ | Latin Small Letter O With Tilde | |
| 246 | 0xF6 | ö | Latin Small Letter O With Diaeresis | |
| 247 | 0xF7 | ÷ | Division Sign | |
| 248 | 0xF8 | ø | Latin Small Letter O With Stroke | |
| 249 | 0xF9 | ù | Latin Small Letter U With Grave | |
| 250 | 0xFA | ú | Latin Small Letter U With Acute | |
| 251 | 0xFB | û | Latin Small Letter U With Circumflex | |
| 252 | 0xFC | ü | Latin Small Letter U With Diaeresis | |
| 253 | 0xFD | ý | Latin Small Letter Y With Acute | |
| 254 | 0xFE | þ | Latin Small Letter Thorn | |
| 255 | 0xFF | ÿ | Latin Small Letter Y With Diaeresis |
256 codes — ASCII (0–127) plus the Latin-1 Supplement (128–255) · All data bundled locally