문자 → ASCII / 코드포인트
문자열의 모든 글자에 대해 십진수 유니코드 코드포인트를 보여 줍니다. 테스트, 버그 티켓, 인코딩 디버깅에 적합합니다.
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.