Emoji returns a large number
Emoji are multi-byte Unicode characters, not ASCII.
Fix: Use the ASCII to Byte tool if you only need 0–255 values.
header • up to 320x100 / 728x90
Convert each character in a string to its ASCII / Unicode code point
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.
Character to ASCII converts every character in your text to its decimal code point using JavaScript's native String.codePointAt. Printable characters return the classic 0–127 ASCII range, while emoji and CJK glyphs return their multi-byte Unicode code points.
This is the workhorse tool for low-level debugging, protocol design, key-derivation checks, and any task where you need to see the underlying numeric representation of a string.
Hi!
72 105 33
Emoji are multi-byte Unicode characters, not ASCII.
Fix: Use the ASCII to Byte tool if you only need 0–255 values.
This tool returns decimal.
Fix: Use the Text to Hex tool if you need hexadecimal character codes.
Decimal. Use Text to Hex for base-16.
The tool uses codePointAt, so emoji return a single code point (not two surrogates).
Yes — newlines return 10 (LF) or 13 (CR).
Yes, though very long strings may be slow in older browsers.
No. All processing happens in your browser.
Pair this tool with the reverse converter and with hex / binary views for deeper inspection. You can also browse the full Encoders & Decoders category for more options.
Turn a list of ASCII / Unicode code points back into readable 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
Convert space or comma separated byte values (0–255) to ASCII text
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