Number Base Converter
Convert between Binary, Octal, Decimal, and Hexadecimal
Binarybase 2
0b
Octalbase 8
0o
Decimalbase 10
Hexadecimalbase 16
0x
Quick Reference
Binary (base 2) — digits: 0, 1Octal (base 8) — digits: 0–7Decimal (base 10) — digits: 0–9Hexadecimal (base 16) — 0–9, A–F
Common Values
| Dec | Bin | Oct | Hex |
|---|---|---|---|
| 0 | 0 | 0 | 0 |
| 1 | 1 | 1 | 1 |
| 2 | 10 | 2 | 2 |
| 7 | 111 | 7 | 7 |
| 8 | 1000 | 10 | 8 |
| 10 | 1010 | 12 | A |
| 15 | 1111 | 17 | F |
| 16 | 10000 | 20 | 10 |
| 32 | 100000 | 40 | 20 |
| 64 | 1000000 | 100 | 40 |
| 127 | 1111111 | 177 | 7F |
| 128 | 10000000 | 200 | 80 |
| 255 | 11111111 | 377 | FF |
| 256 | 100000000 | 400 | 100 |
| 512 | 1000000000 | 1000 | 200 |
| 1024 | 10000000000 | 2000 | 400 |
Click a row to load that value.