Value above 255
Bytes must fit in 0–255.
Fix: Use ASCII Code to Character for multi-byte code points.
header • up to 320x100 / 728x90
Convert space or comma separated byte values (0–255) to ASCII 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.
Byte to ASCII takes a list of unsigned 8-bit integers (0–255) and returns the matching Latin-1 / ASCII string using String.fromCharCode. Each value maps to exactly one character in the ASCII/Latin-1 range.
It is ideal for reconstructing payloads dumped by packet sniffers, low-level network debuggers, and microcontroller serial logs where data arrives as raw byte streams.
72 101 108 108 111 33
Hello!
Bytes must fit in 0–255.
Fix: Use ASCII Code to Character for multi-byte code points.
Bytes below 32 often map to control characters that won't show up visually.
Fix: Use the Hex to Text tool to inspect bytes with clearer hexadecimal formatting.
Byte to ASCII enforces 0–255. ASCII to Char accepts the full Unicode code-point range.
Latin-1 / ISO-8859-1 via String.fromCharCode — the standard single-byte fallback.
Yes — spaces, commas, and tabs are all accepted.
No. Two's-complement bytes should be converted to 0–255 first.
No — the conversion runs entirely in your browser.
Pair this tool with ASCII to Byte, Hex to Text, and Decimal to ASCII for a full round-trip workflow. You can also browse the full Encoders & Decoders category for more options.
Convert ASCII text into a list of byte values (0–255)
Convert hexadecimal to text
Convert text to hexadecimal
Turn a list of ASCII / Unicode code points back into readable text
Convert each character in a string to its ASCII / Unicode code point
Convert binary to ASCII text
Convert ASCII / Unicode text to a list of decimal character codes
Convert a list of decimal character codes to ASCII / Unicode text
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