Text to Binary Converter

charcode
2⁷2⁶2⁵2⁴2⁰
H
72
01001000
i
105
01101001

Show the working for binary → text

This converter turns characters into 8-bit UTF-8 or ASCII bytes. If you have ASCII decimal codes rather than characters, use ASCII to Binary; for a plain number, use Decimal to Binary.

Going the other way? Convert binary back to text

How do you convert text to binary?

Text to binary conversion replaces every character with the 8-bit binary form of its ASCII or UTF-8 code, so a two-letter word becomes two groups of eight digits.

In short

Text to binary converts each character to its 8-bit code: "Hi" is 01001000 01101001. Look up each character's ASCII/UTF-8 code, convert that number to binary, pad it to 8 digits, and separate the bytes with spaces.

  1. Take the first character and look up its code. H is 72.
  2. Convert that code to binary by repeated division or from the table. 72 is 1001000.
  3. Pad the result on the left with zeros until it is 8 digits: 01001000.
  4. Repeat for every character and separate the bytes with a single space: Hi = 01001000 01101001.

Text to Binary Conversion Table

Every letter, digit and the space, with its code in all four bases. Find the character in the first column and read across: the Dec column is the code the method uses, and the Bin column is what this converter writes — 8 digits per character, zero-padded on the left. That column uses the digit set 0, 1 and nothing else, each place worth 2ⁿ, and a value marked with the 0b prefix means the same thing. This page writes one 8-bit zero-padded byte per character, single space between bytes. This page shows the rows you need; ASCII code chart (decimal, hex, octal, binary) carries all 128.

Text to Binary Conversion Table
CharDecHexOctBin
A654110101000001
B664210201000010
C674310301000011
D684410401000100
E694510501000101
F704610601000110
G714710701000111
H724811001001000
I734911101001001
J744A11201001010
K754B11301001011
L764C11401001100
M774D11501001101
N784E11601001110
O794F11701001111
P805012001010000
Q815112101010001
R825212201010010
S835312301010011
T845412401010100
U855512501010101
V865612601010110
W875712701010111
X885813001011000
Y895913101011001
Z905A13201011010
a976114101100001
b986214201100010
c996314301100011
d1006414401100100
e1016514501100101
f1026614601100110
g1036714701100111
h1046815001101000
i1056915101101001
j1066A15201101010
k1076B15301101011
l1086C15401101100
m1096D15501101101
n1106E15601101110
o1116F15701101111
p1127016001110000
q1137116101110001
r1147216201110010
s1157316301110011
t1167416401110100
u1177516501110101
v1187616601110110
w1197716701110111
x1207817001111000
y1217917101111001
z1227A17201111010
0483006000110000
1493106100110001
2503206200110010
3513306300110011
4523406400110100
5533506500110101
6543606600110110
7553706700110111
8563807000111000
9573907100111001
(space)322004000100000

The base this page writes, defined by the digits it uses, how a value is marked, and what each position is worth.

Base reference
BaseRadixDigits PrefixPlace worthTypical range
Binary20, 1 0b2ⁿ8-bit byte 0–255 (00000000–11111111); 4-bit nibble 0–15; 16/32/64-bit words

Worked Example: "Hi" to Binary

One character at a time, with the working written out. This is the same grid the converter shows when you turn on "show steps".

charcode
2⁷2⁶2⁵2⁴2⁰
H
72
01001000
i
105
01101001

Result: Hi = 01001000 01101001

Take the first character, H. Its code is 72. Written in binary that is 1001000, which is 8 digits only once a leading zero is added: 01001000. The place values across the top of the grid show why — 64 + 8 = 72, and every column with a 1 in it contributes its own weight.

Every remaining character repeats that same three moves: find the code, write it in binary, pad it to 8 digits. i is 105, so 01101001. The groups then join in the order the characters were typed, separated by a single space.

Nothing about the order or the count changes: one character in, one group out. That is what makes the result reversible without carrying any extra information alongside it, and it is also the quickest way to check the answer. Count the groups; there should be exactly as many as there are characters, spaces included. Then take any one group and find its row in the table above — the code in the Dec column must be the number in the Code column of the grid, and the Binary column must be the group itself. A group that comes out one digit short means a leading zero was dropped; a group count that is short means a space was trimmed off the input before the conversion ran. Those two are the only ways a correct code still produces a wrong-looking result.

Check it in reverse

The value goes back the way it came. Read 01001000 is 72, and 72 is H; read 01101001 is 105, and 105 is i. Nothing is lost on the return trip, because every character keeps one group of its own and the groups keep their order. A decoder needs no extra information from the encoder — the fixed width tells it where each group ends, and the table tells it what each code means. To verify the result by hand, decode the binary output back to text and compare it with what you started from.

Worked examples: text to binary

Each example gives the value first, then the working. Click a value to load it in the converter.

What is "Hi" in binary?

"Hi" in text is 01001000 01101001 in binary.

Method: H is code 72 = 01001000; i is code 105 = 01101001.

Load this value in the converter · see it in the table

How do you write "I love you" in binary?

"I love you" in text is 01001001 00100000 01101100 01101111 01110110 01100101 00100000 01111001 01101111 01110101 in binary.

Method: one 8-bit group per character, spaces included (00100000).

Load this value in the converter

What is the letter a in binary?

a in text is 01100001 in binary.

Method: a is code 97 = 64 + 32 + 1.

Load this value in the converter · see it in the table

What is the letter A in binary?

A in text is 01000001 in binary.

Method: A is code 65 = 64 + 1.

Load this value in the converter · see it in the table

What is the letter e in binary?

e in text is 01100101 in binary.

Method: e is code 101 = 64 + 32 + 4 + 1.

Load this value in the converter · see it in the table

What is the letter b in binary?

b in text is 01100010 in binary.

Method: b is code 98 = 64 + 32 + 2.

Load this value in the converter · see it in the table

What is the letter d in binary?

d in text is 01100100 in binary.

Method: d is code 100 = 64 + 32 + 4.

Load this value in the converter · see it in the table

What is the letter f in binary?

f in text is 01100110 in binary.

Method: f is code 102 = 64 + 32 + 4 + 2.

Load this value in the converter · see it in the table

What is the letter t in binary?

t in text is 01110100 in binary.

Method: t is code 116 = 64 + 32 + 16 + 4.

Load this value in the converter · see it in the table

What is the letter g in binary?

g in text is 01100111 in binary.

Method: g is code 103 = 64 + 32 + 4 + 2 + 1.

Load this value in the converter · see it in the table

What is the letter j in binary?

j in text is 01101010 in binary.

Method: j is code 106 = 64 + 32 + 8 + 2.

Load this value in the converter · see it in the table

What is the letter n in binary?

n in text is 01101110 in binary.

Method: n is code 110 = 64 + 32 + 8 + 4 + 2.

Load this value in the converter · see it in the table

What is the letter r in binary?

r in text is 01110010 in binary.

Method: r is code 114 = 64 + 32 + 16 + 2.

Load this value in the converter · see it in the table

What is "hello" in binary?

"hello" in text is 01101000 01100101 01101100 01101100 01101111 in binary.

Method: one 8-bit group per character, spaces included (00100000).

Load this value in the converter

What is a space in binary?

A space in text is 00100000 in binary.

Method: the space is code 32.

Load this value in the converter · see it in the table

How do you write your name in binary?

"Ana" in text is 01000001 01101110 01100001 in binary.

Method: A is code 65 = 01000001; n is code 110 = 01101110; a is code 97 = 01100001.

Load this value in the converter

Common phrases people convert: what binary code is · load one of these into the decoder

Every example above reverses exactly — decode the same 8-bit groups back into words.

What Changes the Binary Output?

Spaces and line breaks

A space is a character like any other: code 32, or 00100000. A trailing space converts too, which is the usual reason an output runs one group longer than expected.

Characters outside ASCII

UTF-8 encodes each character in 1 to 4 bytes. Characters 0–127 use one byte identical to ASCII, so ASCII text is valid UTF-8. Above code 127 UTF-8 uses more than one byte per character, so the byte count stops matching the character count. é is U+00E9 and encodes as C3 A9 (2 bytes); € is U+20AC and encodes as E2 82 AC (3 bytes); 😀 is U+1F600 and encodes as F0 9F 98 80 (4 bytes). Written the way this page writes them, those are é = 11000011 10101001, € = 11100010 10000010 10101100 and 😀 = 11110000 10011111 10011000 10000000. UTF-8 encoding explained sets out why.

Width and padding

ASCII defines 128 characters, codes 0–127, using 7 bits; in practice each code is stored in one 8-bit byte with a leading 0. That is why A is 01000001 here, not 1000001. Uppercase and lowercase differ by 32, which is bit 5, so a is 01100001.

Separator choice

The space between groups is a display choice; the bytes do not change. iToolHub's text-to-binary and text-to-hex converters write one 8-bit byte per character, separated by spaces. Pick no separator when the output feeds another program, a comma for a spreadsheet.

Text to Binary in Code

The same rule in one line. Both take a string and return the binary codes, space-separated.

Python: ' '.join(format(b, '08b') for b in s.encode('utf-8'))
JavaScript: [...new TextEncoder().encode(s)].map(b => b.toString(2).padStart(8, '0')).join(' ')

Common Mistakes

Frequently Asked Questions

How do you convert a text file to binary?

Open the file, paste its contents into the box above, and convert. The result is the same as converting the text by hand: one 8-bit byte per character, every line break included.

Why does each character become 8 binary digits?

Because a byte is the unit text is stored in. A byte is 8 bits and holds 256 values, 0–255; a nibble is 4 bits. ASCII needs only 7 of those bits, so the eighth is written as a leading zero.

Can you convert emoji or non-English text to binary?

Yes. UTF-8 encodes each character in 1 to 4 bytes. Characters 0–127 use one byte identical to ASCII, so ASCII text is valid UTF-8. Above 127 a character runs to two, three or four bytes; the exact values are under "Characters outside ASCII".

Should the binary output be separated by spaces?

That is a display choice and it changes nothing. iToolHub's text-to-binary and text-to-hex converters write one 8-bit byte per character, separated by spaces. Turn the separator off when the output feeds another program.

Does a space or line break get converted to binary?

Yes, both. ASCII codes 32–126 are printable characters; 0–31 and 127 are control characters (for example 10 = line feed, 13 = carriage return, 32 = space). A space becomes 00100000.

How do you convert text to binary in Python?

Encode the string to bytes, then format each byte to 8 binary digits. The one-liner under Text to Binary in Code does exactly that and gives this page's output.

Going back the other way works the same: the same value converts straight back in the binary to text direction.

The rest of the family sits on the rest of the binary converters in this family.