ToolWren logo ToolWren
ToolWrenEncoding › ASCII Table

ASCII Table & Lookup

Convert characters to their ASCII codes and back, with a reference table of printable characters.

100% client-side · nothing is uploaded

Loading tool…

Quick answer

ASCII Table is a free, private online tool that lets you look up ASCII codes — convert characters to decimal/hex codes and back, with a full printable table. It runs entirely in your browser, so nothing you enter is uploaded to a server.

How to use the ASCII Table

  1. Pick a direction with the toggle: Text → Codes or Codes → Text.
  2. In Text → Codes mode, type any text to see each character's decimal and hex code.
  3. In Codes → Text mode, enter space-separated decimal codes (e.g. 72 105 33) to rebuild the text.
  4. The result updates instantly as you type; use Copy to grab it.
  5. Use the printable ASCII reference table below for quick lookups.

Privacy: this tool runs entirely in your browser. Your input is never sent to, received by, or stored on any server — there are no uploads and no tracking of what you enter.

About ASCII Table

What is ASCII

ASCII assigns a number 0-127 to letters, digits and symbols. Code 65 is A, 97 is a, 48 is 0. It underpins text encoding.

Lookup both ways

Use the toggle to switch direction: type text to see each character's decimal and hex code, or switch to Codes → Text and enter codes to rebuild the text.

The table

A reference of all printable ASCII characters (32-126) is shown for quick lookup.

Frequently asked questions

What is the ASCII code for A?
65 (uppercase) and 97 (lowercase a).
Does it cover extended ASCII?
It focuses on standard printable ASCII (32-126); use the Unicode tools for beyond.
Is it useful for programming?
Yes — for character math, control characters and encoding work.

Understanding ASCII Table in depth

What ASCII is

ASCII (American Standard Code for Information Interchange) is the foundational character encoding that assigns a number from 0 to 127 to letters, digits, punctuation and control characters. The letter A is 65, a is 97, the digit 0 is 48, and a space is 32. It underpins virtually all text encoding - UTF-8 is built to be backward-compatible with it.

What this tool does

This is a two-way ASCII lookup. Type text and it shows each character's decimal and hexadecimal code; enter codes and it rebuilds the text. It also displays a reference table of all the printable ASCII characters, so you can look up any value at a glance.

Printable versus control characters

Codes 32 to 126 are the printable characters you can see and type - letters, digits, symbols and space. Codes 0 to 31 (plus 127) are control characters - invisible codes like tab (9), newline (10) and carriage return (13) that control formatting and devices rather than displaying a glyph. The reference table focuses on the printable range.

Why developers use it

ASCII codes come up constantly in programming: doing arithmetic on characters (converting case by adding or subtracting 32), parsing and validating input, working with control characters in protocols, debugging encoding issues, and understanding how text maps to numbers. Knowing that A is 65 and a is 97 is a genuinely useful piece of working knowledge.

How to use it

Enter text to see its codes, or enter space-separated decimal codes to decode them back to text - both update instantly. Use the printable table as a quick reference. For converting whole numbers between bases, see the Number Base Converter; for raw byte work, the Hex tool. Everything runs in your browser.

Related & complementary tools

More Encoding tools