Emoji returns surprising values
Multi-byte Unicode characters are truncated to their low byte.
Fix: Use Character to ASCII if you need the full Unicode code point.
header • up to 320x100 / 728x90
Convert ASCII text into a list of byte values (0–255)
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 Byte walks each character in your input and emits its Latin-1 byte value (0–255). For multi-byte Unicode characters, only the low byte is preserved, matching String.prototype.charCodeAt & 0xff semantics.
The tool is commonly used when building fixtures for low-level protocols, serial handshakes, or embedded firmware where input needs to be expressed as explicit byte arrays.
Hi!
72 105 33
Multi-byte Unicode characters are truncated to their low byte.
Fix: Use Character to ASCII if you need the full Unicode code point.
This tool returns decimal bytes.
Fix: Use Text to Hex if you need hexadecimal byte listings.
They are truncated to their low byte — use Char to ASCII for full code points.
Space. Copy and replace if you need comma-separated values.
No — use Text to Hex for hex byte output.
Yes, for pure Latin-1 input. Unicode input will change after truncation.
No — all work is done locally in your browser.
Pair this with Byte to ASCII, Text to Hex, and Text to Binary for round-trip workflows. You can also browse the full Encoders & Decoders category for more options.
Convert space or comma separated byte values (0–255) to ASCII text
Convert text to hexadecimal
Convert text to binary
Convert ASCII / Unicode text to a list of decimal character codes
Convert a list of decimal character codes to ASCII / Unicode text
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 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