Decimal to Text
Paste a list of decimal character codes and get the decoded text back instantly. Runs entirely in your browser.
🔒 This tool runs entirely in your browser. Your files are never uploaded to a server.
Text
Example shown — replace it with your own decimal codes.
How it works
- Paste a list of decimal codes separated by spaces, commas, or newlines.
- Each code is converted to its corresponding character.
- The decoded text is assembled and shown instantly.
Conversion splits the input on whitespace or commas, parses each
token as a decimal number, and maps it to a character via
String.fromCharCode().
FAQ
Is my data uploaded anywhere?
No. Conversion happens entirely in your browser — nothing is sent to a server.
What separators are supported?
Spaces, commas, or newlines between decimal codes all work.
Can I go from text back to decimal?
Yes — see the companion Text to Decimal tool for the reverse conversion.
What happens with a code outside the standard range?
Codes above 127 are decoded as their Unicode code point, so extended characters still convert correctly.
How we compare
| Feature | Online Tool Store | Calculator app | Python one-liner |
|---|---|---|---|
| Converts a whole list at once | ✓ | One code at a time | ✓ |
| Free, no setup | ✓ | ✓ | Requires Python installed |
A calculator only converts one number at a time. Decimal to Text decodes a whole list in a single paste.