Decimal to Text
Convert decimal byte codes back into text. Paste space-separated decimal values to decode.
About the Decimal to Text converter
This tool decodes decimal byte codes back into readable text. You paste base-10 numbers and each one is treated as a character code, so 72 105 decodes to Hi. It is the reverse of a text-to-decimal tool and is useful for turning a list of ASCII or Unicode code points back into a string, decoding numeric data, or verifying an encoder's output.
How to use it
- Paste your decimal codes, each separated by a space.
- The decoded text appears instantly below.
- Copy the readable result to reuse it.
A single byte holds values from 0 to 255, so most plain text uses numbers in that range. For multi-byte UTF-8 characters such as accented letters and emoji, all of the byte values must be present and in order to rebuild the character. Codes outside the valid range may not decode as expected. The conversion runs in your browser, so the numbers you paste are never sent to a server.
Frequently asked questions
What is the valid range for a decimal byte code?
A single byte holds 0 to 255. Values for common characters match ASCII, where 65 is A and 97 is a, and higher values are part of multi-byte UTF-8 sequences.
How do I decode accented letters or emoji?
Those characters are encoded as several UTF-8 bytes, so include all of their decimal values in the original order for them to decode correctly.
Why does a number not decode?
Codes well outside the 0 to 255 byte range, or incomplete multi-byte sequences, can produce unexpected output. Check that each value is a valid byte and that sequences are complete.
Is the decimal I paste uploaded anywhere?
No. Decoding happens entirely in your browser, so the data stays on your device.