ASCII Table

Full ASCII reference 0–127 with decimal, hex, binary, character, and HTML entity. Filterable.

What is this for?

ASCII (American Standard Code for Information Interchange) is the 128-character coding system that maps the digits, letters, punctuation, and a handful of control codes onto the integers 0–127. It's the foundation every modern text encoding (UTF-8, Latin-1, Windows-1252) extends, so knowing the values is occasionally vital — diagnosing a stray byte in a binary file, building a regex for "any printable", reading a hex dump, or remembering whether 0x0A or 0x0D is a newline.

When to use it

Common gotchas