Convert text to binary code instantly. Essential tool for developers, programmers, and digital security applications.
Binary (base-2) is a numeral system that uses only two symbols: 0 and 1. It's the fundamental language of computers and digital systems.
| Character | Binary | Decimal | Hex | Character | Binary | Decimal | Hex |
|---|---|---|---|---|---|---|---|
| Space | 00100000 | 32 | 20 | A | 01000001 | 65 | 41 |
| ! | 00100001 | 33 | 21 | B | 01000010 | 66 | 42 |
| 0 | 00110000 | 48 | 30 | C | 01000011 | 67 | 43 |
| 1 | 00110001 | 49 | 31 | D | 01000100 | 68 | 44 |
| 2 | 00110010 | 50 | 32 | E | 01000101 | 69 | 45 |
| a | 01100001 | 97 | 61 | F | 01000110 | 70 | 46 |
| b | 01100010 | 98 | 62 | G | 01000111 | 71 | 47 |
| c | 01100011 | 99 | 63 | Z | 01011010 | 90 | 5A |
Note: Each character is represented by 8 bits (1 byte) in standard ASCII encoding. Unicode characters may require multiple bytes.
Text to binary conversion is the process of translating human-readable text into binary code (sequences of 0s and 1s). This conversion is essential for computers to store, process, and transmit textual information.
Technical Note: Computers store all data as binary digits. Text to binary conversion is fundamental to how computers process and store information.
Enter your text in the input field above. You can enter any text including letters, numbers, symbols, and emojis.
Adjust conversion options:
Click "Convert to Binary" or let the real-time conversion process your input.
Copy your result using the copy button next to the output.
Binary is a base-2 numeral system that uses only two digits: 0 and 1. Each digit is called a bit (binary digit). Computers use binary because:
Technical Example: The letter 'A' has an ASCII value of 65. In binary, this is represented as 01000001 (64 + 1 = 65).
Input: Hello
Binary Output: 01001000 01100101 01101100 01101100 01101111
Each character is converted to its 8-bit binary representation:
Input: 123!@#
Binary Output: 00110001 00110010 00110011 00100001 01000000 00100011
Numbers and symbols also have binary representations:
Input: ?
Binary Output: 11110000 10011111 10011000 10001010
Emojis and special Unicode characters require multiple bytes:
Binary is the foundation of all digital systems: