Skip to main content

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

CharacterASCII CodeBinary
H7201001000
e10101100101
l10801101100
l10801101100
o11101101111
␣3200100000
W8701010111
o11101101111
r11401110010
l10801101100
d10001100100

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

  1. Paste text to convert to binary.
  2. Or paste binary digits to convert back to text.
  3. The conversion updates in real-time.
  4. 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.