Decimal to Text Converter
Decode decimal Unicode code points back into readable text.
Converters Runs in your browser
How do you convert decimal to text?
Paste “72 105” and the output reads “Hi”: each number is treated as a Unicode code point and converted straight back to its character. Separators barely matter, since any run of digits counts as one code, whether you split with spaces, commas or new lines. Valid range is 0 through 1114111 (0x10FFFF); numbers beyond that are ignored rather than throwing the whole decode away.
How to use the Decimal to Text
- 1 Paste the code list; mixed separators are tolerated.
- 2 Characters assemble in the output as each number resolves.
- 3 Anything above 1114111 is silently dropped, so double-check suspect values.
- 4 Copy the reconstructed text.
What you can use it for
- Turning code-point lists from source code into text.
- Decoding numeric HTML entities.
- Recovering text stored as numbers.
- Sanity-checking a text-to-decimal conversion.
Frequently asked questions
What separators can I use?
Whatever you have. The parser grabs each run of digits and ignores everything between, so “72,105” and “72 105” both give “Hi”.
What is the valid range?
Unicode tops out at code point 1,114,111 (hex 10FFFF). Larger numbers can’t map to a character and are left out of the output.
Why do some numbers produce invisible output?
Codes like 8203 (zero-width space) or 13 (carriage return) are real characters that just don’t show visibly. Paste the result into a character inspector if the length looks off.
Related tools
More Converters
More tools like this:
All Converters