Browse the complete ASCII code table (0-255) with decimal, hexadecimal, octal, and binary conversions. Search and filter by any value or character name
The ASCII Lookup tool provides a complete ASCII code table (0-255), split into three independent tables: control characters (0-31, 127), printable characters (32-126), and extended ASCII codes (128-255). Each character's decimal (DEC), hexadecimal (HEX), octal (OCT), and binary (BIN) values are displayed alongside its HTML numeric entity and HTML named entity. Each range has its own dedicated table, rendered server-side and ready to use — no searching or filtering needed.
Whether you're debugging network protocols, studying character encoding fundamentals, writing HTML entity conversion code, or brushing up on computer science basics, this tool serves as a convenient always-available reference.
ASCII (American Standard Code for Information Interchange) is a character encoding standard based on the Latin alphabet, first published in 1963 and updated in 1967 to a 7-bit standard covering both uppercase and lowercase letters. Standard ASCII uses 7 binary bits to represent 128 characters (0-127): 33 non-printable control characters (used for terminal device control and communication protocols) and 95 printable characters (digits, letters, punctuation).
Extended ASCII (128-255) uses the 8th bit to expand the character set to 256. This extended range varies across encoding standards. This tool uses the Windows-1252 standard to display extended ASCII characters, including accented letters used in European languages, currency symbols, and special characters. In HTML, any ASCII character can be represented using &#NN; (numeric entity) or &NAME; (named entity, supported for select characters only), which is particularly useful in web development.
&#decimal; format and are supported for all 256 ASCII characters. HTML named entities use more memorable names (such as © for ©) but are only defined for a subset of commonly used symbols. In HTML documents, both render correctly, but named entities offer better readability.Scenario: Look up all encoding representations of the letter "A".
AASCII is the foundation of character encoding. The Base Converter helps you understand conversion between different number systems. For URL special character encoding, the URL Decoder and URL Encoder are also useful. In text processing, the Text Diff tool can help identify text encoding differences.