Understanding HEX Conversion
The HEX (hexadecimal) number system is a base-16 system used to represent numbers. Each hex digit
represents a value from 0 to 15. This converter allows you to convert hexadecimal values into binary,
decimal, and octal systems.
HEX to Decimal, Binary, and Octal Table
HEX |
Decimal |
Binary |
Octal |
0 | 0 | 0000 | 0 |
1 | 1 | 0001 | 1 |
2 | 2 | 0010 | 2 |
3 | 3 | 0011 | 3 |
4 | 4 | 0100 | 4 |
5 | 5 | 0101 | 5 |
6 | 6 | 0110 | 6 |
7 | 7 | 0111 | 7 |
8 | 8 | 1000 | 10 |
9 | 9 | 1001 | 11 |
A | 10 | 1010 | 12 |
B | 11 | 1011 | 13 |
C | 12 | 1100 | 14 |
D | 13 | 1101 | 15 |
E | 14 | 1110 | 16 |
F | 15 | 1111 | 17 |
Example Conversions
Example 1:
- HEX: 1A
- Binary: 0001 1010
- Decimal: 26
- Octal: 32
Example 2:
- HEX: FF
- Binary: 1111 1111
- Decimal: 255
- Octal: 377
Example 3:
- HEX: 10
- Binary: 0001 0000
- Decimal: 16
- Octal: 20