ASCII Table — Character Codes 0–127 Lookup

Developer

An ASCII table is a reference of the standard character codes 0–127 (33 control characters and 95 printable characters) shown in decimal, hex, octal, and binary.

What is it

ASCII (American Standard Code for Information Interchange) is a 7-bit character encoding from 1963 that assigns codes 0–127 to English letters, digits, punctuation, and control characters. Unicode inherited this range unchanged, so ASCII remains the foundation of all text processing. This tool looks up the code for a character (or the character for a code) instantly and includes the complete 0–127 table. Lookups are handled entirely in your browser.

Uppercase A–Z = 65–90, lowercase a–z = 97–122 (case difference 32), digits 0–9 = 48–57

How to use

  1. 1Type a character (e.g. A), a decimal code (e.g. 65), or a hex code (e.g. 0x41).
  2. 2Press lookup to see the decimal, hex, octal, and binary values.
  3. 3Scroll the full 0–127 reference table below for control-character abbreviations.

Reference

ASCII Table — Character Codes 0–127 Lookup Reference
DecimalHexCharacter
909TAB (horizontal tab)
100ALF (line feed)
130DCR (carriage return)
3220space
48300
6541A
9761a
1277FDEL (delete)

Sources & standards

FAQ

How does ASCII relate to Unicode?

ASCII is the 7-bit encoding covering codes 0–127, and Unicode is a superset that keeps this range identical. In UTF-8, ASCII characters are encoded as the same single byte, so they are fully compatible.

What are control characters?

Codes 0–31 and 127 that are not printed but control devices and communication. TAB (9), LF (10, newline), CR (13), and ESC (27) are still in everyday use.

Is my input sent to a server?

No. Lookup uses a static table built into the page and your input never leaves the browser.

Related tools