Boneyard Tools

Text to Binary Converter

Type or paste text to see its binary code, or switch to decode mode to turn binary back into text. Uses UTF-8, so letters, accents and emoji all work.

How to convert text to binary

  1. Type or paste your text into the box.
  2. Choose encode to get binary, or decode to read binary back as text.
  3. Copy the result, which updates as you type.

Examples

Encode a word

Hi
01001000 01101001

Decode binary

01000001 01000010
AB

Frequently asked questions

How does text become binary?

Each character is turned into its UTF-8 byte value, and each byte is written as an 8-digit binary number. The bytes are joined with spaces so the output is easy to read.

Why is every byte 8 bits long?

A byte is 8 bits, so values from 0 to 255 always fit in exactly eight digits. Padding with leading zeros keeps every byte the same width and makes decoding unambiguous.

What is the difference between ASCII and UTF-8?

ASCII covers basic English in a single byte per character. UTF-8 extends that to every language and emoji, using one byte for ASCII and two to four bytes for everything else. This tool uses UTF-8, which is fully compatible with ASCII.

How do I turn binary back into text?

Switch to decode mode and paste your binary. The tool splits it on spaces, reads each 8-bit group as a byte, and decodes the bytes as UTF-8 to recover the original text.

Do emoji and accented letters work?

Yes. They take more than one byte in UTF-8, so they produce several 8-bit groups, and they round-trip exactly when you decode them again.

Is my text uploaded anywhere?

No. Encoding and decoding run entirely in your browser, so nothing you type ever leaves your device.

Related tools