Decode binary (8-bit groups) back into readable text.
| Input | Output |
|---|---|
| 01001000 01101001 | Hi |
| 01000001 | A |
| 00110100 00110010 | 42 |
Groups of 8 bits separated by spaces work best; a continuous string is split every 8 bits.
Non-binary characters produce an error notice — check for typos.
Yes, for any single-byte (ASCII/Latin) content it reverses perfectly.