Text to Decimal (ASCII)
Your data never leaves your browserConvert each character in a string to its decimal code point value.
Brie — Bug Reporting Tool
Dealing with encoding issues in production?
Brie captures the full network request/response chain so you can see exactly where encoding breaks.
About Text to Decimal (ASCII)
Convert any text string to a space-separated list of decimal Unicode code point values. For ASCII text this produces familiar ASCII codes (65 for A, 97 for a, 32 for space). For Unicode text, higher code points are included. Useful for learning character encodings or preparing data for legacy systems.
How to use
- Paste or type your text into the input panel.
- Each character is converted to its decimal code point.
- Values are separated by spaces in the output.
More Encoding / Decoding
Frequently Asked Questions
FAQs about Text to Decimal (ASCII)
What are ASCII decimal codes?
Every character in the ASCII standard has a decimal number. "A" is 65, "a" is 97, "0" is 48, and space is 32. This tool extends this to all Unicode characters using their code points.
How is this different from ASCII to Unicode?
ASCII to Unicode shows code points in U+XXXX hex notation. This tool shows the same code points as plain decimal integers.
Can this handle non-ASCII characters?
Yes. Non-ASCII characters are given their Unicode code point as a decimal number. For example "€" is 8364 and "😀" is 128512.
What separator is used between values?
Values are separated by single spaces.
Is my data safe?
Yes. All conversion happens locally in your browser.