ASCII to Text Converter
Paste a list of ASCII / byte codes such as 72 101 108 108 111 and read the text.
Processed locally in your browser· Your data stays in your browser.
What is ASCII to Text Converter?
An ASCII code list is simply text written as decimal byte values. Each number from 0 to 255 is one byte; the bytes are then decoded as UTF-8, which means codes 0–127 give plain ASCII characters and multi-byte sequences such as 195 169 give "é".
The converter accepts spaces, commas, semicolons, new lines and even array brackets like [72, 105]. It reports the exact token when something is not a whole number or is above 255, so a typo is easy to find.
How does it work?
- Paste your codes, separated by spaces, commas or new lines.
- Keep UTF-8, or choose ISO-8859-1 if your codes come from a Latin-1 table (for example 233 = é).
- Read the text below, or use Swap to convert text back to codes.
Common use cases
- Decoding a charCodeAt() dump or a byte array printed by your program.
- Solving puzzles that hide a message as ASCII numbers.
- Turning the numbers in a serial-monitor log into readable messages.
- Verifying a homework answer on the ASCII table.
Examples
Try this input in the tool above:
72 101 108 108 111 44 32 87 111 114 108 100 33
Hello, World!
Privacy
ASCII to Text Converter runs entirely in your browser. The text or files you provide are processed on your device and are not uploaded, logged or stored on our servers.
Limitations
Codes are treated as bytes (0–255). For Unicode code points above 255 (such as 8364 for €), use Decimal to Text.
Frequently asked questions
Why does 8364 give an error?
ASCII/byte codes stop at 255. 8364 is the Unicode code point of €; convert it with Decimal to Text, or supply its UTF-8 bytes 226 130 172.
Which separators work?
Spaces, commas, semicolons, tabs and line breaks, with or without surrounding brackets or braces.
What happens with codes below 32?
They are control characters (tab, line feed…). They are kept in the output, so you may see line breaks or invisible characters.
Related tools
Text to ASCII Converter
List the ASCII / byte code of every character, for example "Hi" → 72 105.
Encoding & Decoding
Decimal to Text Converter
Paste decimal Unicode code points and get the characters they stand for, emoji included.
Encoding & Decoding
Hex to Text Converter
Paste hex bytes from a dump, a log or a source file and read the text they spell.
Encoding & Decoding
Binary to Text Converter
Paste a string of ones and zeros and read the message hidden in it.
Encoding & Decoding
Octal to Text Converter
Paste octal byte values such as 110 145 154 154 157 or \110\145\154 and read the text.
Encoding & Decoding
Unicode Character Inspector
Paste text or an emoji and see exactly which code points, bytes and scripts it is made of.
Encoding & Decoding