Number & Text Encoding

Ascii to Text

Convert ascii to text instantly. For example, "Hi" comes from "72 105".

Rate this tool
ASCII (decimal)
Text

ASCII (decimal) to Text — quick reference

ASCII (decimal)Text

How to use the Ascii to Text

  1. Type or paste your ascii (decimal) on the left.
  2. Read the text result on the right.
  3. Copy the result, or check the reference table below.

About the Ascii to Text

This tool converts ascii (decimal) back into readable text. Every character on a computer has a numeric code point — the letter A is 65, a space is 32 — and this converter turns those ASCII (decimal) codes back into the characters they stand for. Type on the left and the result appears instantly.

Worked example. Each code is read back to its character. 72 is 72, which is the letter H, and 105 is 105, which is i — so "72 105" becomes "Hi".

The codes are separated by spaces, one per character, so you can read them straight across. This is the standard way to inspect or hand-build text at the byte level — useful when debugging an encoding, reading a hex dump, or writing an escape sequence. Everything runs in your browser, so nothing you type is uploaded. For the opposite direction use the Text to ASCII (decimal) converter, and see also text to binary and the ASCII converter.

Frequently asked questions

How does "Hi" convert from ASCII (decimal)?

"72 105" becomes "Hi": 72 is H and 105 is i.

Are the codes separated by spaces?

Yes. Put a single space between each ASCII (decimal) code and each is decoded to one character.

Does this work with letters, digits and symbols?

Yes. Every character with a Unicode code point is supported, including letters, digits, punctuation and spaces.

Is anything uploaded?

No. The conversion happens in your browser with JavaScript and nothing you enter leaves your device.