Binary to hex table
| Binary | Hex |
|---|---|
| 0 | 0 |
| 1 | 1 |
| 10 | 2 |
| 11 | 3 |
| 100 | 4 |
| 101 | 5 |
| 110 | 6 |
| 111 | 7 |
| 1000 | 8 |
| 1001 | 9 |
| 1010 | A |
| 1011 | B |
| 1100 | C |
| 1101 | D |
| 1110 | E |
| 1111 | F |
| 10000 | 10 |
| 100000 | 20 |
| 1000000 | 40 |
| 1100100 | 64 |
| 10000000 | 80 |
| 11111111 | FF |
| 100000000 | 100 |
| 1111101000 | 3E8 |
| 10000000000 | 400 |
Questions and answers
How do I convert binary to hex?
Go through decimal, or group digits: each hex digit is exactly four binary digits. 11111111 → FF.
How big a number can I convert?
Any size. ConvertEasy uses arbitrary-precision integers (BigInt), so 256-bit hashes and addresses convert exactly.