Binary to English Translator

Decode binary into English words. Example: 01001000 01101001 → Hi.

Text Binary
Hi01001000 01101001
Hello01001000 01100101 01101100 01101100 01101111
OK01001111 01001011
Love01001100 01101111 01110110 01100101

How to convert binary to English by hand

  1. Split bits into 8-bit bytes.
  2. Convert each byte to decimal with powers of 2.
  3. Map decimals to ASCII characters.
  4. Read the English word left to right.

FAQ

What is binary to English?

Decoding 0s and 1s into readable English text — the same as binary to text for ASCII/UTF-8 words.

What does 01001000 01101001 mean?

Hi — H (72) and i (105).

Can I convert English back to binary?

Yes — use the text to binary converter.

Related: Binary to Text, ASCII Table, Common phrases.

Full interactive tool loads with JavaScript. Canonical page.