Text to Binary
Convert any text to binary code — or decode binary back to text. Hex, octal and decimal output included. Live character table.
How does text-to-binary conversion work?
Every character you type has a numeric code in the ASCII or Unicode standard. Binary conversion takes that code and writes it in base-2 (zeros and ones). Each character becomes an 8-bit byte — a group of exactly eight binary digits.
| Char | Binary | Hex | Octal | Decimal |
|---|---|---|---|---|
| A | 01000001 | 41 | 101 | 65 |
| a | 01100001 | 61 | 141 | 97 |
| 0 | 00110000 | 30 | 60 | 48 |
| Space | 00100000 | 20 | 40 | 32 |
| ! | 00100001 | 21 | 41 | 33 |
Learn how computers store text. Every email, document, and webpage is ultimately binary at the hardware level.
Encode secret messages in binary for basic ciphers, educational cryptography exercises, or puzzle games.
Verify character codes when debugging encoding issues — especially useful for non-ASCII and special characters.
Instantly look up the binary, hex, octal and decimal value of any character using the character breakdown table.