BinaryCon Binary Converter

ASCII → Text

Result

ASCII → Text

Convert sequences of ASCII character codes into readable text strings.

Example (decimal codes): 72 105Hi

Example (hex bytes): 48 69Hi (if interpreted as hex bytes)

Definition: Interpret each numeric code as an ASCII codepoint and map it to the corresponding character. Codes may be provided as decimal, hex (with or without 0x), or space/newline-separated.

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"