Decimal to Text
Decode decimal character codes into text — code points become characters.
How to use Decimal to Text
- Paste the decimal codes separated by spaces — e.g. 72 101 121 33.
- Read the decoded text instantly: Hey!
- Try a single code to identify a mystery character — 8203 reveals itself as a zero-width space (selectable but invisible).
- Click “Copy result” to use the decoded string anywhere.
What is Decimal to Text?
A decimal to text converter turns numeric character codes back into the characters they name: 72 105 → Hi, 8364 → €, 128512 → 😀. Each space-separated number is looked up as a Unicode code point and rendered.
It answers questions like "what character is 8212?" (an em dash) without hunting through Unicode tables — the decoding counterpart to ord(), HTML numeric entities and any log or dataset that stores characters as plain numbers.
About the Decimal to Text
Paste decimal codes separated by spaces and the decoded string appears instantly — ASCII, accented letters, symbols and emoji alike.
Use it to preview an HTML entity before writing it (❤ → what is 10084? — a ❤), to decode datasets or logs that serialized text as code-point lists, to reveal what character a numeric error message is complaining about, and to solve number-coded puzzle messages. Invalid tokens are flagged by name so one typo doesn't shift the rest of the message.
Everything decodes live in your browser. Text to Decimal encodes the reverse; ASCII to Text is the same operation if you prefer that name for codes under 128.