Text to Binary Converter

Convert any text to its UTF-8 bytes written as 8-bit binary numbers. Learn how characters map to ones and zeros.

Plain text
Binary output

Need to scan documents to real PDFs?

Offline PDF Scanner turns your phone camera into a real PDF scanner — with searchable text, not just photos. Works completely offline.

How it works

Your text is first encoded as a sequence of UTF-8 bytes. Each byte — a value from 0 to 255 — is then written as an 8-digit binary string with leading zeros. So A (byte 65) becomes 01000001, and the emoji 👋 becomes four bytes: 11110000 10011111 10010001 10001011.

Why convert text to binary?

  • Teaching how characters and bits relate in computer science courses.
  • Creating puzzles and escape-room clues.
  • Debugging low-level protocols where you see bit-level data.
  • Generating test vectors for bit-manipulation code.

How to use

  1. Type or paste text into the left panel.
  2. Pick a separator between bytes (space is most readable).
  3. Click Encode →. Copy or download.

Privacy

Everything happens in your browser. Input is never uploaded.

Frequently Asked Questions