ASCII / Unicode Number to Character Converter
Convert ASCII/Unicode numbers into their characters.
—
How it works
Each integer is interpreted as a Unicode code point and rendered as a character.
Examples
| Input | Output |
|---|
| 72 101 108 108 111 | Hello |
| 65 | A |
| 36 | $ |
Frequently Asked Questions
What range is valid?
0–127 is standard ASCII; up to 1,114,111 covers all Unicode characters.
Can I mix decimal and hex?
Use decimal here — for hex input, use the Hex to Decimal converter first.
Why do some codes show nothing?
Codes below 32 are non-printable control characters.
Related Tools