How text becomes binary
Every character you type is stored internally as a number — the character’s code-point. Binary encoding converts that number to a sequence of 0s and 1s. The letter “A” is code-point 65, which in 8-bit binary is 01000001. The encoding scheme (ASCII, UTF-8, Unicode) defines how many bits to use and how to handle characters beyond the first 128.
ASCII vs UTF-8
ASCII covers 128 characters using 7 bits — enough for English letters, digits, and basic punctuation. UTF-8 is backward-compatible with ASCII for the first 128 code-points but extends to 2–4 bytes for higher code-points, covering all Unicode. The per-character table shows the exact byte sequence for each character.
Privacy
Everything runs locally in your browser. No text is uploaded or stored.