BinaryConverter

Free Binary Converter & Translator

Type text to see it as binary, or paste binary to read it back as text (ASCII). Conversions run on your device as you type, so results are instant and your text stays yours.

0 characters

0 characters

  • Converts as you type
  • Text, decimal, hex and octal
  • Works offline on your device

Binary to Decimal, Hex & Octal Converter

Convert binary to decimal, decimal to binary, hexadecimal to binary and octal — in any direction. Type a number in any field and the other three update as you type. See the dedicated hex converter below.

Hex Converter — Hexadecimal to Binary, Decimal & Text

Hexadecimal (base 16) uses the digits 0–9 and A–F, and each hex digit stands for exactly four binary bits. Convert hex to binary, hex to decimal and hex to text — every conversion runs in your browser as you type.

Hex to binary

Every hex digit maps to a 4-bit group, so A is 1010 and F is 1111. Type a hex value in the binary, decimal & hex converter and read the binary straight away.

Hex to decimal

Multiply each hex digit by its place value — 1, 16, 256 and so on — then add them up. The base converter shows the decimal instantly, so FF becomes 255.

Hex to text

Split the hex into pairs, turn each pair into its ASCII code, then into a character. Paste hex into the translator and choose Hex → Text to decode it.

Hexadecimal digits with their binary and decimal values
HexBinaryDecimal
000000
100011
200102
300113
401004
501015
601106
701117
810008
910019
A101010
B101111
C110012
D110113
E111014
F111115

Binary Calculator

Add, subtract, multiply or divide two binary numbers. Results are shown in binary and decimal.

Result in binary
Result in decimal

Division is integer division — the remainder is dropped.

Common Binary Conversions

Decimal to binary conversion examples — the numbers people look up most, converted to binary.

  • 0 in binary0
  • 1 in binary1
  • 2 in binary10
  • 3 in binary11
  • 4 in binary100
  • 5 in binary101
  • 6 in binary110
  • 7 in binary111
  • 8 in binary1000
  • 9 in binary1001
  • 10 in binary1010
  • 11 in binary1011
  • 12 in binary1100
  • 13 in binary1101
  • 14 in binary1110
  • 15 in binary1111
  • 16 in binary10000
  • 17 in binary10001
  • 18 in binary10010
  • 19 in binary10011
  • 20 in binary10100
  • 32 in binary100000
  • 50 in binary110010
  • 64 in binary1000000
  • 100 in binary1100100
  • 101 in binary1100101
  • 128 in binary10000000
  • 255 in binary11111111
  • 256 in binary100000000
  • 1000 in binary1111101000
  • 1024 in binary10000000000

Binary Alphabet & ASCII Table

Every letter and digit with its ASCII code and 8-bit binary value.

A–Z

Uppercase letters A to Z in ASCII and binary
CharacterASCIIBinary
A6501000001
B6601000010
C6701000011
D6801000100
E6901000101
F7001000110
G7101000111
H7201001000
I7301001001
J7401001010
K7501001011
L7601001100
M7701001101
N7801001110
O7901001111
P8001010000
Q8101010001
R8201010010
S8301010011
T8401010100
U8501010101
V8601010110
W8701010111
X8801011000
Y8901011001
Z9001011010

a–z

Lowercase letters a to z in ASCII and binary
CharacterASCIIBinary
a9701100001
b9801100010
c9901100011
d10001100100
e10101100101
f10201100110
g10301100111
h10401101000
i10501101001
j10601101010
k10701101011
l10801101100
m10901101101
n11001101110
o11101101111
p11201110000
q11301110001
r11401110010
s11501110011
t11601110100
u11701110101
v11801110110
w11901110111
x12001111000
y12101111001
z12201111010

0–9

Digits 0 to 9 in ASCII and binary
CharacterASCIIBinary
04800110000
14900110001
25000110010
35100110011
45200110100
55300110101
65400110110
75500110111
85600111000
95700111001

How to Convert Binary

Three methods, three steps each, with a worked example.

Convert text to binary

  1. Take one characterStart with a single character, for example the letter A.
  2. Find its ASCII codeLook up the character in the ASCII table. A is 65.
  3. Write the code in 8 bitsConvert 65 to binary and pad it to eight digits: 01000001.

Convert binary to decimal

  1. Give each digit its place valueReading 1101 from the right, the places are 1, 2, 4 and 8.
  2. Keep the places where the digit is 11101 has a 1 in the 8, 4 and 1 places. The 2 place holds a 0, so drop it.
  3. Add the places together8 + 4 + 1 = 13. So 1101 in binary is 13 in decimal.

Worked example 1101 = 13

Convert decimal to binary

  1. Divide by 2 and note the remainderDivide the decimal number by 2. For 13, that is 6 remainder 1.
  2. Repeat until you reach 0Keep halving the quotient: 6→3 r0, 3→1 r1, 1→0 r1.
  3. Read the remainders in reverseReading the remainders from the last division back to the first gives 1101. So 13 is 1101.

Worked example 13 = 1101

Frequently Asked Questions

Answers to the questions people ask most about binary conversion.

What is binary code?

Binary code writes numbers and text using only two digits, 0 and 1. Each digit is a bit. Computers use binary because a circuit has two stable states, on and off, which map directly onto 1 and 0.

How do I convert text to binary?

Take each character and find its ASCII code, then write that code as an 8-bit binary number. The letter A is ASCII 65, which is 01000001. The translator above does this for a whole text as you type.

How do I convert binary to decimal?

Give each binary digit a place value, doubling from right to left: 1, 2, 4, 8 and so on. Add up the place values wherever the digit is 1. For 1101 that is 8 + 4 + 1 = 13.

How do I read binary code?

Split the code into groups of eight digits. Convert each group to a decimal number, then look that number up in the ASCII table to get the character. Read the characters in order to get the original text.

What is the binary alphabet?

The binary alphabet is the set of letters written as 8-bit ASCII values. A is 01000001 and Z is 01011010, while lowercase a is 01100001. The full table is above.

Is this binary translator free?

Yes. Every tool on this page is free with no limits, no signup and no account. There is nothing to install and no file size cap, because your text never leaves your device.

What is 10 in binary?

10 in binary is 1010, because 8 + 2 = 10. The same method works for any number: add the place values 1, 2, 4, 8, 16 and so on until they total your number.

How do I convert binary to words?

Split the binary into 8-digit groups, turn each group into its ASCII number, then read that number as a character. Do this for every group and the characters spell out the words. Paste your binary into the translator above and it turns binary to words for you as you type.

How do I convert hex to binary?

Replace each hexadecimal digit with its 4-bit binary group: 0 is 0000, 9 is 1001, A is 1010 and F is 1111. Write the groups in the same order and you have the binary, so 2F becomes 0010 1111. The hex converter above does it for a whole number at once.

What is FF in decimal?

FF in hexadecimal is 255 in decimal, because F is 15 and 15 × 16 + 15 = 255. FF is also 11111111 in binary — the largest value a single byte can hold.

Does binary to ASCII conversion work offline?

Yes. All conversion runs in your browser with JavaScript, so nothing is uploaded to a server. Once the page has loaded you can disconnect and every tool keeps working.

What is BinaryConverter?

BinaryConverter is a free set of tools for converting between text, binary, decimal, hex and octal. It is built for students checking homework, developers reading bit patterns and anyone decoding a message. Every tool runs in your browser, with no limit on length.

How do I get in touch?

Email hello@binaryconverter.net. Corrections, bug reports and requests for new conversions are all welcome. If a conversion looks wrong, include the input you used so it can be reproduced.

See your text in binary

Type into the translator and the result appears as you type. The method is explained above, so you can check the working yourself.

Open the translator