Char to ASCII
Look up the decimal Unicode codepoint of every character in a string for tests and tickets.
Any text. Each character becomes its Unicode codepoint.
Space-separated decimal codes.
Look up the decimal Unicode codepoint of every character in your text. Useful for crafting test fixtures, describing edge-case inputs in tickets, or studying how strings decompose into numeric codes.
What is the difference between ASCII and Unicode codepoints?
ASCII covers 0–127 only. Unicode codepoints extend the same idea up to 0x10FFFF and are what JavaScript exposes through String.codePointAt.
How do I get hex codepoints?
Convert each decimal output to hex with the Decimal to Hex tool, or rely on the All Numbers Converter for batch work.