BinaryConverter

Hex to Binary Converter

Convert hexadecimal to binary instantly — type on the left and the result appears on the right. Everything runs in your browser, nothing is uploaded.

How to convert hex to binary

Because 16 is 2 to the 4th power, each hexadecimal digit expands into exactly four bits. That makes hex to binary a simple digit-by-digit swap.

Method: 4 bits map to one hex digit, so you just group and swap.

  1. Take each hex digitHandle one hexadecimal digit at a time.
  2. Write its 4-bit value0 = 0000, A = 1010, F = 1111 — always four bits.
  3. Join the groupsKeep the digits in order to get the full binary number.

Examples 1A = 11010FF = 11111111

Hex to Binary Table

Common hexadecimal values with their binary equivalents.

Hex to Binary conversion table
HexadecimalBinary
00
11
210
311
4100
5101
6110
7111
81000
91001
A1010
B1011
C1100
D1101
E1110
F1111
1010000
1410100
20100000
32110010
401000000
641100100
8010000000
FF11111111
100100000000
2001000000000
3E81111101000

Frequently asked questions

How do you convert hex to binary?

Replace each hex digit with its 4-bit value — 0 = 0000, A = 1010, F = 1111 — keeping the order. So 2F becomes 0010 1111.

What is F in binary?

F is 1111 and A is 1010; every hex digit is exactly four bits.

Do I pad each hex digit to four bits?

Yes — each hex digit always becomes four binary digits, so hex 1 is 0001, not 1.