Text to Binary
Convert text to binary and binary to text.
Input (Text)
PLAINTEXT1 lines
1
Output (Binary)
01001000 01100101 01101100 01101100 01101111 00100000 01010111 01101111 01110010 01101100 01100100
Character Breakdown
| Character | ASCII Code | Binary |
|---|---|---|
| H | 72 | 01001000 |
| e | 101 | 01100101 |
| l | 108 | 01101100 |
| l | 108 | 01101100 |
| o | 111 | 01101111 |
| ␣ | 32 | 00100000 |
| W | 87 | 01010111 |
| o | 111 | 01101111 |
| r | 114 | 01110010 |
| l | 108 | 01101100 |
| d | 100 | 01100100 |
About the Text To Binary
Binary representation of text is used in low-level programming, network protocols, and computer science education. Each character maps to a sequence of 1s and 0s based on its ASCII or UTF-8 encoding.
Type or paste text to see its binary representation. Each character is converted to its 8-bit binary equivalent. Convert binary back to text just as easily — all computed locally in your browser.
How to use
- Paste text to convert to binary.
- Or paste binary digits to convert back to text.
- The conversion updates in real-time.
- Copy the result for your coursework or debugging.
Frequently Asked Questions
What encoding is used? ▾
Each character is converted to its 8-bit ASCII/UTF-8 binary representation. For example, the letter A (ASCII 65) becomes 01000001.
Can I convert binary back to text? ▾
Yes — paste binary digits (1s and 0s) and the tool converts them back to readable text using the same encoding.