Text to Binary Converter

Convert text into UTF-8 binary, 8 bits per byte.

Ad placeholder (leaderboard)
Enjoying the tools? Go Pro for £4.99 (one-time) and remove all ads — forever, on this device. Remove ads — £4.99

Text to binary converter

This converter turns any text into its binary representation, encoding characters as UTF-8 and showing every byte as eight binary digits. It is useful for learning how computers store text, for puzzles and CTF challenges, and for inspecting exactly which bytes a string produces.

How it works

The tool encodes your text as UTF-8, the standard variable-width encoding. Each character becomes one or more bytes: ASCII characters (A–Z, digits, common punctuation) are a single byte, while accented letters, symbols and emoji span two to four bytes. Every byte is converted to base 2 and left-padded to 8 digits, then the bytes are joined with single spaces:

binary = each UTF-8 byte → 8-bit string, space-separated

Example

Hi encodes to two ASCII bytes: H is 72 (01001000) and i is 105 (01101001), giving:

01001000 01101001
CharacterCode pointBinary (UTF-8)
A6501000001
a9701100001
04800110000
space3200100000

Everything runs in your browser — nothing you type is uploaded.

Ad placeholder (rectangle)