ASCII to Text Converter
Convert ASCII codes to text and text to ASCII codes. Decode space or comma separated numbers into characters, or encode text into its code numbers.
Calculator by Toolsloft ↗Convert ASCII codes to readable text and text back to ASCII codes. Paste a list of numbers separated by spaces or commas to decode them into characters, or type text to get its code numbers. It works with the standard ASCII range and extends to full Unicode code points for anything beyond it.
How this is calculated
Each character maps to a code number using its Unicode code point, which matches the classic ASCII table for the first 128 characters. Decoding reads each number and returns the character at that code point, and encoding returns the code point of each character, following the ASCII and Unicode standards.
How to use
- Choose whether to decode codes into text or encode text into codes.
- Paste your numbers separated by spaces or commas, or type your text.
- Copy the converted result.
Examples
- Decode:
72 101 108 108 111 to Hello - Encode:
Hello to 72 101 108 108 111 - Custom delimiter:
Hi! to 72,105,33
FAQ
- What number is each letter?
- Capital A is 65, lowercase a is 97, and the digit 0 is 48. A space is 32. These are the standard ASCII codes, and the tool shows the full list when you encode any text.
- Does it handle characters beyond plain ASCII?
- Yes. Characters outside the ASCII range use their Unicode code point, so accented letters, symbols, and emoji all convert both ways.