Binary to Text Converter
Convert binary (0s and 1s) to readable text, or encode text to binary. Accepts space-separated bytes or a continuous binary string.
Advertisement
How it works
Each text character maps to a number (its ASCII code), which is represented in binary as an
8-bit byte. The converter groups your input into 8-bit chunks and maps each to its ASCII
character. For example, 01001000 = 72 = "H".
Examples
-
01001000 01100101 01101100 01101100 01101111→ Hello -
01010111 01101111 01110010 01101100 01100100→ World