Overview
What decimal to text means
A decimal to text conversion reads each decimal value as a character code and maps it back to a character.
Use this when you have encoded character codes — from a dump, a protocol, or a puzzle — and want the original text. Values can be space-separated, or entered as a contiguous string that is split into logical groups.
Guide
How to convert decimal to text
- 1
Split the decimal input
Split on whitespace into individual decimal codes. Each token must be a valid non-negative character code.
- 2
Interpret each token as base-10
Read every group with the decimal digit set (0–9) to recover an integer code point.
- 3
Map each code to a character
Valid Unicode code points fall between 0 and 0x10FFFF. Values outside that range are rejected rather than producing garbage text.
- 4
Join the characters
Concatenate the decoded characters in order. Leading zeros in the numeric input do not change the resulting character.
Example
Worked example
Take the decimal sample 72 105. Walking through the conversion:
- Dec 72 → code point 72 → 'H'
- Dec 105 → code point 105 → 'i'
Reference
Character reference
Common characters and their values across bases. Use this table to sanity-check single-character conversions.
| Char | Dec | Bin | Oct | Hex |
|---|---|---|---|---|
| A | 65 | 01000001 | 101 | 41 |
| a | 97 | 01100001 | 141 | 61 |
| Z | 90 | 01011010 | 132 | 5A |
| 0 | 48 | 00110000 | 060 | 30 |
| 9 | 57 | 00111001 | 071 | 39 |
| space | 32 | |||
| ! | 33 | 00100001 | 041 | 21 |
| é | 233 | 11101001 | 351 | E9 |
Basics
About these bases
base-10Decimal
Decimal is base-10, the everyday number system using digits 0–9.
Decimal is the bridge humans usually use when reasoning about other bases. Converting through decimal is a reliable mental model even when a tool does the work for you.
Digits: 0–9
charsText
Text is a sequence of characters. Each character has a numeric code point that can be encoded into any numeric base.
This converter uses Unicode code points (ASCII for common English characters). Multi-character strings are converted character by character, with numeric values separated by spaces.
Digits: Unicode code points
Practice
When to use a decimal → text converter
Debugging & inspection
Quickly check how a decimal value looks when rewritten as text without opening a calculator or REPL.
Learning place value
See the same quantity side by side in two alphabets — a concrete way to internalize powers of two, eight, ten, or sixteen.
Protocol & homework checks
Verify dumps, worksheet answers, or configuration values before you paste them into code or documentation.
Private, offline work
Everything runs in your browser. Nothing you type is uploaded, which keeps keys, snippets, and sample data on your device.
Notes
Tips and common pitfalls
- Multi-character text is converted per character. A whole word is not treated as a single giant integer.
- Invalid digits stop the conversion with a clear error instead of silently skipping characters.
Explore
Related converters
FAQ
Frequently asked questions
- Does decimal to text change the value?
- For text conversions, each character’s code point is preserved — only the written form of that code changes. The characters themselves are recovered when you convert back.
- Is my input uploaded?
- No. Conversion runs entirely in your browser. Nothing you type is sent to a server.
- How should I format multi-value input?
- Enter space-separated decimal character codes.
- What digits are valid in decimal?
- Decimal accepts 0–9.