ASCII → Text
Result
—
ASCII → Text
Convert sequences of ASCII character codes into readable text strings.
Notes & parsing rules
- If numbers are decimal (e.g.
72) they are treated as ASCII codepoints. - If numbers contain hex digits (A–F) or are prefixed with
0x, they are parsed as hexadecimal bytes. - Input may be separated by spaces, commas, or newlines. Non-numeric separators are ignored.
Conversion example
Input: 72 105 Process: 72 → 'H' (U+0048), 105 → 'i' (U+0069) Result: "Hi"