Learn Binary for Computer Science
Understand how computers store text as binary — see exactly how letters map to 8-bit ASCII bytes.
Education tips
Type any letter and see its 8-bit binary representation. "A" = 01000001 (65 in decimal). Capital letters differ from lowercase by one bit (bit 5).
"A" = 01000001, "a" = 01100001. The only difference is bit 5 (0-indexed from right). This is why toggling case can be done with a single bitwise OR/AND.
The stats panel shows total bytes and bits. "Hello" = 5 characters = 5 bytes = 40 bits — one byte (8 bits) per ASCII character.
Non-ASCII characters (emoji, accented letters) use 2–4 bytes each in UTF-8. Try typing "👋" and see how many bytes it uses.
Πώς λειτουργεί
Γιατί να χρησιμοποιήσετε το δικό μας;
Also check out…
Binary Code Puzzles and Ciphers
Encode secret messages in binary for escape rooms,
Binary Representation in Networking
See how text data is represented in binary at the
Text Steganography with Binary
Hide text messages in binary data streams — an int
Understanding Binary Data Transmission
See how text is encoded to binary bytes for transm
