Decimal to Text Converter
Free online Decimal to Text Converter for 2026. Convert decimal code points to readable characters and text to decimal values — supports full Unicode including emojis. 100% browser-based.
Decimal to Text Converter Tool
Space-separated decimal values. Supports Unicode code points 0–1,114,111 (including emojis).
What Is a Decimal to Text Converter?
Every character on your screen has a numeric identity called a code point. In the decimal (base-10) number system, the letter H is 72, e is 101, and the 🎉 emoji is 127,881. A decimal to text converter maps those numbers back to their visual characters using the Unicode standard.
This tool covers the full Unicode range (0–1,114,111) — far beyond the 128-character ASCII limit. For standard ASCII decimal decoding, also see our dedicated ASCII to Text Converter. Need a visual reference? The ASCII Table maps the first 128 decimal values to their characters.
How It Works
Select Decimal to Text or Text to Decimal using the tabs above.
Enter space-separated decimal numbers (e.g.
72 101 108 111) or plain text.Characters appear instantly in the output box — no conversion button needed.
Use Swap to reverse the conversion and verify round-trip accuracy.
Copy or download results with one click.
Decimal to Character Quick Reference
| Decimal | Character | Hex | Description |
|---|---|---|---|
| 32 | (space) | 20 | Space |
| 65 | A | 41 | Uppercase A |
| 97 | a | 61 | Lowercase a |
| 48 | 0 | 30 | Digit zero |
| 128522 | 😊 | 1F60A | Smiling emoji |
| 8364 | € | 20AC | Euro sign |
For the complete ASCII range (0–127), see our ASCII Table.
Common Use Cases
- CTF Challenges: Decode flags encoded as decimal Unicode sequences in cybersecurity competitions.
- HTML Entities: Convert decimal character references like
€to their visual output. - Programming: Inspect
charCodeAt()orcodePointAt()values returned by JavaScript, Python, and other languages. - Education: Teach how the Unicode standard assigns unique numbers to every character in every language.