ASCII Value Calculator
Look up ASCII decimal, hex, and binary values for any character
ASCII Table Reference
| Dec | Hex | Char | Description |
|---|---|---|---|
| 0 | 00 | NUL | |
| 1 | 01 | SOH | |
| 2 | 02 | STX | |
| 3 | 03 | ETX | |
| 4 | 04 | EOT | |
| 5 | 05 | ENQ | |
| 6 | 06 | ACK | |
| 7 | 07 | BEL | |
| 8 | 08 | BS | |
| 9 | 09 | HT | |
| 10 | 0A | LF | |
| 11 | 0B | VT | |
| 12 | 0C | FF | |
| 13 | 0D | CR | |
| 14 | 0E | SO | |
| 15 | 0F | SI | |
| 16 | 10 | DLE | |
| 17 | 11 | DC1 | |
| 18 | 12 | DC2 | |
| 19 | 13 | DC3 | |
| 20 | 14 | DC4 | |
| 21 | 15 | NAK | |
| 22 | 16 | SYN | |
| 23 | 17 | ETB | |
| 24 | 18 | CAN | |
| 25 | 19 | EM | |
| 26 | 1A | SUB | |
| 27 | 1B | ESC | |
| 28 | 1C | FS | |
| 29 | 1D | GS | |
| 30 | 1E | RS | |
| 31 | 1F | US | |
| 32 | 20 | Space | |
| 33 | 21 | ! | ! |
| 34 | 22 | " | " |
| 35 | 23 | # | # |
| 36 | 24 | $ | $ |
| 37 | 25 | % | % |
| 38 | 26 | & | & |
| 39 | 27 | ' | ' |
| 40 | 28 | ( | ( |
| 41 | 29 | ) | ) |
| 42 | 2A | * | * |
| 43 | 2B | + | + |
| 44 | 2C | , | , |
| 45 | 2D | - | - |
| 46 | 2E | . | . |
| 47 | 2F | / | / |
| 48 | 30 | 0 | 0 |
| 49 | 31 | 1 | 1 |
| 50 | 32 | 2 | 2 |
| 51 | 33 | 3 | 3 |
| 52 | 34 | 4 | 4 |
| 53 | 35 | 5 | 5 |
| 54 | 36 | 6 | 6 |
| 55 | 37 | 7 | 7 |
| 56 | 38 | 8 | 8 |
| 57 | 39 | 9 | 9 |
| 58 | 3A | : | : |
| 59 | 3B | ; | ; |
| 60 | 3C | < | < |
| 61 | 3D | = | = |
| 62 | 3E | > | > |
| 63 | 3F | ? | ? |
| 64 | 40 | @ | @ |
| 65 | 41 | A | A |
| 66 | 42 | B | B |
| 67 | 43 | C | C |
| 68 | 44 | D | D |
| 69 | 45 | E | E |
| 70 | 46 | F | F |
| 71 | 47 | G | G |
| 72 | 48 | H | H |
| 73 | 49 | I | I |
| 74 | 4A | J | J |
| 75 | 4B | K | K |
| 76 | 4C | L | L |
| 77 | 4D | M | M |
| 78 | 4E | N | N |
| 79 | 4F | O | O |
| 80 | 50 | P | P |
| 81 | 51 | Q | Q |
| 82 | 52 | R | R |
| 83 | 53 | S | S |
| 84 | 54 | T | T |
| 85 | 55 | U | U |
| 86 | 56 | V | V |
| 87 | 57 | W | W |
| 88 | 58 | X | X |
| 89 | 59 | Y | Y |
| 90 | 5A | Z | Z |
| 91 | 5B | [ | [ |
| 92 | 5C | \ | \ |
| 93 | 5D | ] | ] |
| 94 | 5E | ^ | ^ |
| 95 | 5F | _ | _ |
| 96 | 60 | ` | ` |
| 97 | 61 | a | a |
| 98 | 62 | b | b |
| 99 | 63 | c | c |
| 100 | 64 | d | d |
| 101 | 65 | e | e |
| 102 | 66 | f | f |
| 103 | 67 | g | g |
| 104 | 68 | h | h |
| 105 | 69 | i | i |
| 106 | 6A | j | j |
| 107 | 6B | k | k |
| 108 | 6C | l | l |
| 109 | 6D | m | m |
| 110 | 6E | n | n |
| 111 | 6F | o | o |
| 112 | 70 | p | p |
| 113 | 71 | q | q |
| 114 | 72 | r | r |
| 115 | 73 | s | s |
| 116 | 74 | t | t |
| 117 | 75 | u | u |
| 118 | 76 | v | v |
| 119 | 77 | w | w |
| 120 | 78 | x | x |
| 121 | 79 | y | y |
| 122 | 7A | z | z |
| 123 | 7B | { | { |
| 124 | 7C | | | | |
| 125 | 7D | } | } |
| 126 | 7E | ~ | ~ |
| 127 | 7F | DEL |
The ASCII table defines 128 characters: 33 control characters (0–31 and 127), the space character (32), and 95 printable characters (33–126). Every programmer should know a few key values by heart: 'A' is 65, 'a' is 97 (32 apart — the same as the space character, making case conversion a simple bit flip), '0' is 48, and newline (LF) is 10. Click any row in the table to look up its full details above.
Frequently Asked Questions
- ASCII (American Standard Code for Information Interchange) assigns a number 0-127 to each character. For example, A=65, a=97, space=32, newline=10.
Related Tools
Text to HEXEncode text as hexadecimal and decode backTimestamp ConverterConvert Unix epoch timestamps to human dates with timezone supportcURL to CodeConvert cURL commands to JavaScript fetch or Python requestsColor ConverterConvert between HEX, RGB, and HSL color formatsColor Palette GeneratorGenerate complementary and analogous color schemesUnit ConverterConvert length, weight, temperature, area, and volumeBase ConverterConvert between binary, octal, decimal, and hexadecimalRoman NumeralsConvert between Arabic numbers and Roman numerals