Out-of-range codes
Valid Unicode code points are 0–0x10FFFF.
Fix: Remove or fix values above 1114111.
header • up to 320x100 / 728x90
Turn a list of ASCII / Unicode code points back into readable text
Output will appear here...
content bottom • up to 300x250
sidebar • 160x600
Last reviewed:
ASCII (American Standard Code for Information Interchange) is a 7-bit character encoding that defines 128 characters, forming the historical basis for most modern encodings.
ASCII to Character is the reverse of Character to ASCII. You paste a space- or comma-separated list of decimal code points and the tool rebuilds the original Unicode string using String.fromCodePoint.
It is useful for reconstructing messages from debug logs, low-level sniffers, and CTF challenges that deliver payloads as lists of numeric codes.
72, 101, 108, 108, 111
Hello
Valid Unicode code points are 0–0x10FFFF.
Fix: Remove or fix values above 1114111.
Values can be space- or comma-separated, but not mixed with other punctuation.
Fix: Normalise the list to spaces or commas only.
This tool expects decimal.
Fix: Convert hex codes to decimal first (Hex to Decimal) or use Hex to Text.
Yes — the tool uses String.fromCodePoint and supports the full Unicode range.
Spaces, commas, or tabs. Mix and match freely within the same list.
No — feed it decimal. Use Hex to Text for hex input.
The tool returns an error message with the offending token.
No hard limit, but very long lists may be slow in older browsers.
Pair this with Character to ASCII and with hex/binary converters for complete round-trips. You can also browse the full Encoders & Decoders category for more options.
Convert each character in a string to its ASCII / Unicode code point
Convert ASCII / Unicode text to a list of decimal character codes
Convert a list of decimal character codes to ASCII / Unicode text
Convert space or comma separated byte values (0–255) to ASCII text
Convert hexadecimal to text
Convert text to hexadecimal
Convert ASCII text into a list of byte values (0–255)
Convert BMP bitmap images into Base64 data URLs for embedding in HTML, email, or legacy apps
Turn GIF images (including animated GIFs) into Base64 data URLs ready to embed inline in HTML or CSS
Encode .ico favicon files as Base64 data URLs for inline HTML favicons or web manifests
Convert JPG or JPEG images into Base64 data URLs for inline HTML, CSS, or JSON — 100% browser-based
Encode PNG images as Base64 data URLs with transparency preserved for inline CSS, HTML, and emails