These control codes have no visual representation.
The “Prog” column shows the construct that represents the
code in string or character literals in the Java, JavaScript, C, C++, C#
and Python programming languages (except for \a which is not
defined for Java or JavaScript, and \v which is not defined
for Java).
Dec | Hex | Prog | Abbr | Name |
---|
0 | 00 | \0 | NUL | Null | 1 | 01 | | SOH | Start of header | 2 | 02 | | STX | Start of text | 3 | 03 | | ETX | End of text | 4 | 04 | | EOT | End of transmission | 5 | 05 | | ENQ | Enquiry | 6 | 06 | | ACK | Acknowledge | 7 | 07 | \a | BEL | Bell | 8 | 08 | \b | BS | Backspace | 9 | 09 | \t | HT | Horizontal tab | 10 | 0A | \n | LF | Line feed | 11 | 0B | \v | VT | Vertical tab | 12 | 0C | \f | FF | Form feed | 13 | 0D | \r | CR | Carriage return | 14 | 0E | | SO | Shift out | 15 | 0F | | SI | Shift in |
|
|
Dec | Hex | Abbr | Name |
---|
16 | 10 | DLE | Data link escape | 17 | 11 | DC1 | Device control 1 | 18 | 12 | DC2 | Device control 2 | 19 | 13 | DC3 | Device control 3 | 20 | 14 | DC4 | Device control 4 | 21 | 15 | NAK | Negative acknowledge | 22 | 16 | SYN | Synchronous idle | 23 | 17 | ETB | End of transmission block | 24 | 18 | CAN | Cancel | 25 | 19 | EM | End of medium | 26 | 1A | SUB | Substitute | 27 | 1B | ESC | Escape | 28 | 1C | FS | File separator | 29 | 1D | GS | Group separator | 30 | 1E | RS | Record separator | 31 | 1F | US | Unit separator |
|
The main block of characters are the same in ASCII and Unicode.
Dec | Hex | HTML | Ch | Name |
---|
32 | 20 | | | Space | 33 | 21 | | ! | Exclamation mark | 34 | 22 | " | " | Quotation mark | 35 | 23 | | # | Number sign | 36 | 24 | | $ | Dollar sign | 37 | 25 | | % | Percent sign | 38 | 26 | & | & | Ampersand | 39 | 27 | | ' | Apostrophe | 40 | 28 | | ( | Left parenthesis | 41 | 29 | | ) | Right parenthesis | 42 | 2A | | * | Asterisk | 43 | 2B | | + | Plus sign | 44 | 2C | | , | Comma | 45 | 2D | | - | Hyphen / Minus | 46 | 2E | | . | Full stop / period | 47 | 2F | | / | Slash / solidus | 48 | 30 | | 0 | | 49 | 31 | | 1 | | 50 | 32 | | 2 | | 51 | 33 | | 3 | | 52 | 34 | | 4 | | 53 | 35 | | 5 | | 54 | 36 | | 6 | | 55 | 37 | | 7 | | 56 | 38 | | 8 | | 57 | 39 | | 9 | | 58 | 3A | | : | Colon | 59 | 3B | | ; | Semicolon | 60 | 3C | < | < | Less than sign | 61 | 3D | | = | Equals sign | 62 | 3E | > | > | Greater than sign | 63 | 3F | | ? | Question mark |
|
|
Dec | Hex | Ch | Name |
---|
64 | 40 | @ | At sign | 65 | 41 | A | | 66 | 42 | B | | 67 | 43 | C | | 68 | 44 | D | | 69 | 45 | E | | 70 | 46 | F | | 71 | 47 | G | | 72 | 48 | H | | 73 | 49 | I | | 74 | 4A | J | | 75 | 4B | K | | 76 | 4C | L | | 77 | 4D | M | | 78 | 4E | N | | 79 | 4F | O | | 80 | 50 | P | | 81 | 51 | Q | | 82 | 52 | R | | 83 | 53 | S | | 84 | 54 | T | | 85 | 55 | U | | 86 | 56 | V | | 87 | 57 | W | | 88 | 58 | X | | 89 | 59 | Y | | 90 | 5A | Z | | 91 | 5B | [ | Left bracket | 92 | 5C | \ | Backslash | 93 | 5D | ] | Right bracket | 94 | 5E | ^ | Circumflex | 95 | 5F | _ | Underline |
|
|
Dec | Hex | Ch | Name |
---|
96 | 60 | ` | Grave | 97 | 61 | a | | 98 | 62 | b | | 99 | 63 | c | | 100 | 64 | d | | 101 | 65 | e | | 102 | 66 | f | | 103 | 67 | g | | 104 | 68 | h | | 105 | 69 | i | | 106 | 6A | j | | 107 | 6B | k | | 108 | 6C | l | | 109 | 6D | m | | 110 | 6E | n | | 111 | 6F | o | | 112 | 70 | p | | 113 | 71 | q | | 114 | 72 | r | | 115 | 73 | s | | 116 | 74 | t | | 117 | 75 | u | | 118 | 76 | v | | 119 | 77 | w | | 120 | 78 | x | | 121 | 79 | y | | 122 | 7A | z | | 123 | 7B | { | Left brace | 124 | 7C | | | Vertical bar | 125 | 7D | } | Right brace | 126 | 7E | ~ | Tilde | 127 | 7F | | Delete |
|
Strictly speaking, code 127 (Delete) belongs with the control codes
above; it has the abbreviation DEL.
The characters in the Unicode 128-255 block are the same in the
ISO-8859-1 encoding.
They are shown in two groups here so that the accented letters are
displayed with the lower case (small) letter alongside its upper case
(capital) equivalent.
The characters in the range 128-159 are not listed here;
these are rarely-used control codes with no visual representation.
Dec | Hex | HTML | Ch | Name |
---|
160 | A0 | | | No-break space | 161 | A1 | ¡ | ¡ | Inverted excl. mark | 162 | A2 | ¢ | ¢ | Cent sign | 163 | A3 | £ | £ | Pound sign | 164 | A4 | ¤ | ¤ | Currency sign | 165 | A5 | ¥ | ¥ | Yen sign | 166 | A6 | ¦ | ¦ | Broken bar | 167 | A7 | § | § | Section sign | 168 | A8 | ¨ | ¨ | Diaeresis | 169 | A9 | © | © | Copyright sign | 170 | AA | ª | ª | Feminine ordinal | 171 | AB | « | « | Left guillemet | 172 | AC | ¬ | ¬ | Not sign | 173 | AD | ­ | | Soft hyphen | 174 | AE | ® | ® | Registered sign | 175 | AF | ¯ | ¯ | Macron |
|
|
Dec | Hex | HTML | Ch | Name |
---|
176 | B0 | ° | ° | Degree sign | 177 | B1 | ± | ± | Plus-minus sign | 178 | B2 | ² | ² | Superscript 2 | 179 | B3 | ³ | ³ | Superscript 3 | 180 | B4 | ´ | ´ | Acute accent | 181 | B5 | µ | µ | Micro sign | 182 | B6 | ¶ | ¶ | Paragraph sign | 183 | B7 | · | · | Middle dot | 184 | B8 | ¸ | ¸ | Cedilla | 185 | B9 | ¹ | ¹ | Superscript 1 | 186 | BA | º | º | Masculine ordinal | 187 | BB | » | » | Right guillemet | 188 | BC | ¼ | ¼ | One quarter | 189 | BD | ½ | ½ | One half | 190 | BE | ¾ | ¾ | Three quarters | 191 | BF | ¿ | ¿ | Inverted question mark |
|
Dec | Hex | HTML | Ch | Name |
---|
192 | C0 | À | À | Capital A grave | 193 | C1 | Á | Á | Capital A acute | 194 | C2 | Â | Â | Capital A circumflex | 195 | C3 | Ã | Ã | Capital A tilde | 196 | C4 | Ä | Ä | Capital A umlaut | 197 | C5 | Å | Å | Capital A ring | 198 | C6 | Æ | Æ | Capital AE ligature | 199 | C7 | Ç | Ç | Capital C cedilla | 200 | C8 | È | È | Capital E grave | 201 | C9 | É | É | Capital E acute | 202 | CA | Ê | Ê | Capital E circumflex | 203 | CB | Ë | Ë | Capital E umlaut | 204 | CC | Ì | Ì | Capital I grave | 205 | CD | Í | Í | Capital I acute | 206 | CE | Î | Î | Capital I circumflex | 207 | CF | Ï | Ï | Capital I umlaut | 208 | D0 | Ð | Ð | Capital Eth | 209 | D1 | Ñ | Ñ | Capital N tilde | 210 | D2 | Ò | Ò | Capital O grave | 211 | D3 | Ó | Ó | Capital O acute | 212 | D4 | Ô | Ô | Capital O circumflex | 213 | D5 | Õ | Õ | Capital O tilde | 214 | D6 | Ö | Ö | Capital O umlaut | 215 | D7 | × | × | Multiplication sign | 216 | D8 | Ø | Ø | Capital O stroke | 217 | D9 | Ù | Ù | Capital U grave | 218 | DA | Ú | Ú | Capital U acute | 219 | DB | Û | Û | Capital U circumflex | 220 | DC | Ü | Ü | Capital U umlaut | 221 | DD | Ý | Ý | Capital Y acute | 222 | DE | Þ | Þ | Capital Thorn | 223 | DF | ß | ß | Small double s |
|
|
Dec | Hex | HTML | Ch | Name |
---|
224 | E0 | à | à | Small a grave | 225 | E1 | á | á | Small a acute | 226 | E2 | â | â | Small a circumflex | 227 | E3 | ã | ã | Small a tilde | 228 | E4 | ä | ä | Small a umlaut | 229 | E5 | å | å | Small a ring | 230 | E6 | æ | æ | Small ae ligature | 231 | E7 | ç | ç | Small c cedilla | 232 | E8 | è | è | Small e grave | 233 | E9 | é | é | Small e acute | 234 | EA | ê | ê | Small e circumflex | 235 | EB | ë | ë | Small e umlaut | 236 | EC | ì | ì | Small i grave | 237 | ED | í | í | Small i acute | 238 | EE | î | î | Small i circumflex | 239 | EF | ï | ï | Small i umlaut | 240 | F0 | ð | ð | Small eth | 241 | F1 | ñ | ñ | Small n tilde | 242 | F2 | ò | ò | Small o grave | 243 | F3 | ó | ó | Small o acute | 244 | F4 | ô | ô | Small o circumflex | 245 | F5 | õ | õ | Small o tilde | 246 | F6 | ö | ö | Small o umlaut | 247 | F7 | ÷ | ÷ | Division sign | 248 | F8 | ø | ø | Small o stroke | 249 | F9 | ù | ù | Small u grave | 250 | FA | ú | ú | Small u acute | 251 | FB | û | û | Small u circumflex | 252 | FC | ü | ü | Small u umlaut | 253 | FD | ý | ý | Small y acute | 254 | FE | þ | þ | Small thorn | 255 | FF | ÿ | ÿ | Small y umlaut |
|
Only a few of the characters in the 256-383 block have HTML entity names;
the “&#nnn; ” form of entity may be
used to include these characters in HTML.
Dec | Hex | HTML | Ch | Name |
---|
256 | 100 | | Ā | Capital A macron | 257 | 101 | | ā | Small a macron | 258 | 102 | | Ă | Capital A breve | 259 | 103 | | ă | Small a breve | 260 | 104 | | Ą | Capital A ogonek | 261 | 105 | | ą | Small a ogonek | 262 | 106 | | Ć | Capital C acute | 263 | 107 | | ć | Small c acute | 264 | 108 | | Ĉ | Capital C circumflex | 265 | 109 | | ĉ | Small c circumflex | 266 | 10A | | Ċ | Capital C dot | 267 | 10B | | ċ | Small c dot | 268 | 10C | | Č | Capital C caron | 269 | 10D | | č | Small c caron | 270 | 10E | | Ď | Capital D caron | 271 | 10F | | ď | Small d caron | 272 | 110 | | Đ | Capital D stroke | 273 | 111 | | đ | Small d stroke | 274 | 112 | | Ē | Capital E macron | 275 | 113 | | ē | Small e macron | 276 | 114 | | Ĕ | Capital E breve | 277 | 115 | | ĕ | Small e breve | 278 | 116 | | Ė | Capital E dot | 279 | 117 | | ė | Small e dot | 280 | 118 | | Ę | Capital E ogonek | 281 | 119 | | ę | Small e ogonek | 282 | 11A | | Ě | Capital E caron | 283 | 11B | | ě | Small e caron | 284 | 11C | | Ĝ | Capital G circumflex | 285 | 11D | | ĝ | Small g circumflex | 286 | 11E | | Ğ | Capital G breve | 287 | 11F | | ğ | Small g breve | 288 | 120 | | Ġ | Capital G dot | 289 | 121 | | ġ | Small g dot | 290 | 122 | | Ģ | Capital G cedilla | 291 | 123 | | ģ | Small g cedilla | 292 | 124 | | Ĥ | Capital H circumflex | 293 | 125 | | ĥ | Small h circumflex | 294 | 126 | | Ħ | Capital H stroke | 295 | 127 | | ħ | Small h stroke | 296 | 128 | | Ĩ | Capital I tilde | 297 | 129 | | ĩ | Small i tilde | 298 | 12A | | Ī | Capital I macron | 299 | 12B | | ī | Small i macron | 300 | 12C | | Ĭ | Capital I breve | 301 | 12D | | ĭ | Small i breve | 302 | 12E | | Į | Capital I ogonek | 303 | 12F | | į | Small i ogonek | 304 | 130 | | İ | Capital I dot | 305 | 131 | | ı | Small i dotless | 306 | 132 | | IJ | Capital IJ ligature | 307 | 133 | | ij | Small ij ligature | 308 | 134 | | Ĵ | Capital J circumflex | 309 | 135 | | ĵ | Small j circumflex | 310 | 136 | | Ķ | Capital K cedilla | 311 | 137 | | ķ | Small k cedilla | 312 | 138 | | ĸ | Small kra | 313 | 139 | | Ĺ | Capital L acute | 314 | 13A | | ĺ | Small l acute | 315 | 13B | | Ļ | Capital L cedilla | 316 | 13C | | ļ | Small l cedilla | 317 | 13D | | Ľ | Capital L caron | 318 | 13E | | ľ | Small l caron | 319 | 13F | | Ŀ | Capital L dot |
|
|
Dec | Hex | HTML | Ch | Name |
---|
320 | 140 | | ŀ | Small l dot | 321 | 141 | | Ł | Capital L stroke | 322 | 142 | | ł | Small l stroke | 323 | 143 | | Ń | Capital N acute | 324 | 144 | | ń | Small n acute | 325 | 145 | | Ņ | Capital N cedilla | 326 | 146 | | ņ | Small n cedilla | 327 | 147 | | Ň | Capital N caron | 328 | 148 | | ň | Small n caron | 329 | 149 | | ʼn | Small apostrophe n | 330 | 14A | | Ŋ | Capital Eng | 331 | 14B | | ŋ | Small eng | 332 | 14C | | Ō | Capital O macron | 333 | 14D | | ō | Small o macron | 334 | 14E | | Ŏ | Capital O breve | 335 | 14F | | ŏ | Small o breve | 336 | 150 | | Ő | Capital O double acute | 337 | 151 | | ő | Small o double acute | 338 | 152 | Œ | Œ | Capital OE ligature | 339 | 153 | œ | œ | Small oe ligature | 340 | 154 | | Ŕ | Capital R acute | 341 | 155 | | ŕ | Small r acute | 342 | 156 | | Ŗ | Capital R cedilla | 343 | 157 | | ŗ | Small r cedilla | 344 | 158 | | Ř | Capital R caron | 345 | 159 | | ř | Small r caron | 346 | 15A | | Ś | Capital S acute | 347 | 15B | | ś | Small s acute | 348 | 15C | | Ŝ | Capital S circumflex | 349 | 15D | | ŝ | Small s circumflex | 350 | 15E | | Ş | Capital S cedilla | 351 | 15F | | ş | Small s cedilla | 352 | 160 | Š | Š | Capital S caron | 353 | 161 | š | š | Small s caron | 354 | 162 | | Ţ | Capital T cedilla | 355 | 163 | | ţ | Small t cedilla | 356 | 164 | | Ť | Capital T caron | 357 | 165 | | ť | Small t caron | 358 | 166 | | Ŧ | Capital T stroke | 359 | 167 | | ŧ | Small t stroke | 360 | 168 | | Ũ | Capital U tilde | 361 | 169 | | ũ | Small u tilde | 362 | 16A | | Ū | Capital U macron | 363 | 16B | | ū | Small u macron | 364 | 16C | | Ŭ | Capital U breve | 365 | 16D | | ŭ | Small u breve | 366 | 16E | | Ů | Capital U ring | 367 | 16F | | ů | Small u ring | 368 | 170 | | Ű | Capital U double acute | 369 | 171 | | ű | Small u double acute | 370 | 172 | | Ų | Capital U ogonek | 371 | 173 | | ų | Small u ogonek | 372 | 174 | | Ŵ | Capital W circumflex | 373 | 175 | | ŵ | Small w circumflex | 374 | 176 | | Ŷ | Capital Y circumflex | 375 | 177 | | ŷ | Small y circumflex | 376 | 178 | Ÿ | Ÿ | Capital Y umlaut | 377 | 179 | | Ź | Capital Z acute | 378 | 17A | | ź | Small z acute | 379 | 17B | | Ż | Capital Z dot | 380 | 17C | | ż | Small z dot | 381 | 17D | | Ž | Capital Z caron | 382 | 17E | | ž | Small z caron | 383 | 17F | | ſ | Small long s |
|
Selected additional characters have entity names in the HTML standard; a
few of them are shown here.
Dec | Hex | HTML | Ch | Name |
---|
402 | 192 | ƒ | ƒ | Small f hook | 710 | 2C6 | ˆ | ˆ | Modifier circumflex | 732 | 2DC | ˜ | ˜ | Small tilde | 8194 | 2002 |   | | En space | 8195 | 2003 |   | | Em space | 8201 | 2009 |   | | Thin space | 8204 | 200C | ‌ | | Zero-width non-joiner | 8205 | 200D | ‍ | | Zero-width joiner | 8206 | 200E | ‎ | | Left-to-right mark | 8207 | 200F | ‏ | | Right-to-left mark | 8211 | 2013 | – | – | En dash | 8212 | 2014 | — | — | Em dash | 8216 | 2018 | ‘ | ‘ | Left single quote | 8217 | 2019 | ’ | ’ | Right single quote | 8218 | 201A | ‚ | ‚ | Single low quote | 8220 | 201C | “ | “ | Left double quote | 8221 | 201D | ” | ” | Right double quote | 8222 | 201E | „ | „ | Double low quote | 8224 | 2020 | † | † | Dagger | 8225 | 2021 | ‡ | ‡ | Double dagger | 8226 | 2022 | • | • | Bullet | 8230 | 2026 | … | … | Horizontal ellipsis | 8240 | 2030 | ‰ | ‰ | Per mille sign |
|
|
Dec | Hex | HTML | Ch | Name |
---|
8242 | 2032 | ′ | ′ | Prime | 8243 | 2033 | ″ | ″ | Double prime | 8249 | 2039 | ‹ | ‹ | Left single angle quote | 8250 | 203A | › | › | Right single angle quote | 8254 | 203E | ‾ | ‾ | Overline | 8260 | 2044 | ⁄ | ⁄ | Fraction slash | 8364 | 20AC | € | € | Euro sign | 8465 | 2111 | ℑ | ℑ | Imaginary part symbol | 8472 | 2118 | ℘ | ℘ | Weierstrass p | 8476 | 211C | ℜ | ℜ | Real part symbol | 8482 | 2122 | ™ | ™ | Trade mark sign | 8501 | 2135 | ℵ | ℵ | Alef symbol | 8592 | 2190 | ← | ← | Left arrow | 8593 | 2191 | ↑ | ↑ | Up arrow | 8594 | 2192 | → | → | Right arrow | 8595 | 2193 | ↓ | ↓ | Down arrow | 8596 | 2194 | ↔ | ↔ | Left-right arrow | 8629 | 21B5 | ↵ | ↵ | Down and left arrow | 8656 | 21D0 | ⇐ | ⇐ | Left double arrow | 8657 | 21D1 | ⇑ | ⇑ | Up double arrow | 8658 | 21D2 | ⇒ | ⇒ | Right double arrow | 8659 | 21D3 | ⇓ | ⇓ | Down double arrow | 8660 | 21D4 | ⇔ | ⇔ | Left-right double arrow |
|
This is not the complete set of HTML entities; more may be added to this
page from time to time.
The information on this page was obtained from the following public
sources:
While every care has been taken to avoid transcription errors when copying
data from the original sources, no guarantees can be given about the
accuracy of the information on this page.
The original sources should be used as the authoritative reference.
The master code table from which all the tables on this page were derived
is available for download in XML form here.
|
|
Last modified:
14 April 2008 |
|