- What encoding?
- UTF-8 by default. Each Unicode character becomes its byte sequence, then each byte becomes 8 binary digits.
- Separator between characters?
- Configurable — space (common for readability), none (compact), newline (one byte per line). The decoder auto-detects.
- Can I decode back?
- Yes — paste binary, get text. Works regardless of the separator convention used in encoding.
- What about non-UTF-8 encodings?
- Toggle to UTF-16 or Latin-1. Most modern contexts use UTF-8; legacy systems (Windows-1252) need specific handling.