About the Binary to Text Converter
This tool reads binary in groups of eight bits and converts each byte to its character. Spaces and other whitespace are ignored, so binary copied with or without separators decodes the same way. The bytes are interpreted as UTF-8, so multi-byte characters that were encoded as several groups reassemble correctly.
The total number of bits must be a multiple of eight; anything else is reported as an error, which usually means a group was mistyped or a bit dropped. Non-binary characters other than whitespace are stripped before decoding, so commas, pipes and 0b prefixes copied out of source code are tolerated. Because separators are ignored rather than trusted, one long run of bits decodes exactly like a neatly spaced one.
The flip side of that leniency is worth knowing. A group short by a single bit does not fail on its own; it shifts every character after it, so the first words read correctly and the rest turns to nonsense. When you see that pattern, count the bits per group rather than rereading the output. The Text to Binary tool produces this format, and Binary to Decimal is the right choice when the bits represent a number instead of characters.
How to use
- Paste the binary, spaced or not.
- Read the decoded text.
- A bit count that is not a multiple of eight is reported.
Common questions
- Does spacing matter?
- No. All whitespace is ignored; only the 0s and 1s are read.
- It says the length is wrong. Why?
- Each character needs exactly eight bits. A total that is not a multiple of eight means a bit is missing or extra.
- Can it decode 7-bit ASCII binary?
- Pad each group to eight bits with a leading zero first; the tool reads bytes, not 7-bit units.