Text to Binary Converter
Convert text to 8-bit binary representation and binary back to text. See character-by-character ASCII breakdown with reference table.
Quick Answer
Each character has an ASCII code that converts to 8-bit binary. “Hi” = 01001000 01101001 (H=72=01001000, i=105=01101001). Spaces separate each character's binary byte.
Text to Binary
Enter text to convert to binary.
ASCII Reference Table
| Character | ASCII Code | Binary |
|---|---|---|
| Space | 32 | 00100000 |
| ! | 33 | 00100001 |
| A | 65 | 01000001 |
| B | 66 | 01000010 |
| Z | 90 | 01011010 |
| a | 97 | 01100001 |
| b | 98 | 01100010 |
| z | 122 | 01111010 |
| 0 | 48 | 00110000 |
| 9 | 57 | 00111001 |
About This Tool
The Text to Binary Converter transforms any text string into its binary representation using 8-bit ASCII encoding, and vice versa. Each character is represented as an 8-bit binary number, making it easy to understand how computers store text at the lowest level. The character breakdown table shows the mapping for each character.
How Computers Store Text
At the hardware level, computers only understand binary (1s and 0s). Text is stored by assigning each character a number (ASCII code), then representing that number in binary. When you type “A”, your computer stores 01000001. When you read text, the computer converts 01000001 back to “A” for display. This conversion happens billions of times per second.
Beyond ASCII: Unicode and UTF-8
ASCII covers only 128 characters, which is enough for English but not for other languages. Unicode expands this to over 140,000 characters covering every writing system. UTF-8 is the dominant encoding on the web, using 1-4 bytes per character. ASCII characters use just 1 byte in UTF-8, making it backward compatible.
Frequently Asked Questions
How does text to binary conversion work?
What is ASCII?
Why are 8 bits used per character?
Can this convert emojis or special characters?
Where is binary representation used?
Was this tool helpful?