Loading tool…
Convert text into 8-bit binary, or decode binary digits back into readable text. Great for learning how characters are stored as bytes.
Loading tool…
Privacy: this tool runs entirely in your browser. Your input is never sent to, received by, or stored on any server — there are no uploads and no tracking of what you enter.
Binary is base-2: every value is a sequence of 0s and 1s (bits). Eight bits form a byte, which can represent 256 values — enough for one ASCII character or one UTF-8 byte.
Encoding turns each character into its UTF-8 byte(s), each shown as 8 bits. Decoding groups the input into 8-bit chunks and converts each back to a byte. Non-binary characters are ignored on decode.
Binary is the foundation of all digital data. Seeing text as binary helps when learning computer science, debugging bit-level protocols, or working with low-level hardware.
01001000 01101001 works.