Text to ASCII

Each character becomes one decimal code point (full Unicode, not only ASCII).

Type text; output is space-separated decimal values (e.g. 72 105 for “Hi”).

Text
Code points

How it works

The string is iterated by Unicode code points (including emoji as one value).

Each code point is printed in decimal and separated by spaces.

ASCII vs Unicode

ASCII covers 0 to 127; this tool still shows higher values for characters outside ASCII.

Privacy

Runs locally.

Common questions

UTF-8 bytes?
Use Text to binary for UTF-8 byte patterns.
Combining characters?
Each code point is listed separately; accents may be separate symbols.
Empty string?
Empty output.
Hex output?
Not here. Decimal only.