Convert numbers between Binary, Octal, Decimal, and Hexadecimal instantly
All conversions happen in your browser. No data is sent to any server.
Uses only 0 and 1. Foundation of digital computers.
Example: 1010 = 10
Uses digits 0-7. Common in Unix file permissions.
Example: 12 = 10
Standard number system. Uses digits 0-9.
Example: 10 = 10
Uses 0-9 and A-F. Common in colors and memory addresses.
Example: A = 10
| Binary | Octal | Decimal | Hexadecimal |
|---|---|---|---|
| 0000 | 0 | 0 | 0 |
| 1010 | 12 | 10 | A |
| 11111111 | 377 | 255 | FF |
| 100000000 | 400 | 256 | 100 |