More tools

Hex to Binary Converter

Convert hex numbers to binary instantly. Any size — everything runs in your browser.

Hex in
Binary out
23 bits
11111000011101011101101
All bases
click a row to convert from it

About hex and binary

Hexadecimal is base 16 — digits 0–9 then a–f. One hex digit is exactly four bits, so bytes read as tidy two-digit pairs. Colors, memory addresses, and hashes are all conventionally written in hex with a 0x prefix.

Binary is base 2 — every digit is a bit, 0 or 1. It's what hardware actually stores, and it surfaces anywhere bit flags, masks, or permissions do. Code usually writes it with a 0b prefix.

For example, hex 7c3aed is 11111000011101011101101 in binary. The converter uses BigInt, so numbers of any size convert without losing precision — and it all runs in your browser.

A free tool by Steven Frady, a creative developer building apps, shaders, and interactive installations. See the work.