Binary Translator
Text to binary and binary to text — 8-bit, UTF-8 safe.
Stays on your device. This tool runs in your browser — nothing you paste or open ever leaves it. Nothing uploaded, nothing to leak.
How text becomes binary
Every character has a number (the letter A is 65), and that number is written in base 2 as an 8-bit byte — 01000001. A space is 00100000. UTF-8 handles characters beyond basic ASCII by using more than one byte, so “é” or an emoji still round-trips correctly.
When you need it
Learning how computers store text, checking an ASCII value, a puzzle or CTF challenge, or encoding a short message in 0s and 1s for fun.