Translate text into binary (8 bits per character) and decode binary back into readable text — for learning, puzzles, and low-level curiosity.
How it works
- Enter your English text or string of binary numbers.
- The tool detects the input type and automatically converts it to the other format.
- Copy the translated string.
Frequently asked questions
What encoding is used?
Each character maps to its Unicode code point as an 8-bit binary value, which covers standard ASCII text directly.
Why 8 bits per character?
A byte is 8 bits, the classic unit for a character in ASCII. The output pads each value to 8 digits.
Can it decode any binary?
It expects space-separated 8-bit groups. Other groupings may not decode cleanly.