Number Base Converter
Auto-converted
Enter a number to see conversions
A number base (or radix) is the number of unique digits used to represent numbers in a positional numeral system. Each position in a number represents a power of the base, making it possible to represent any value using a limited set of symbols.
The most common bases in computing are:
- Binary (Base 2): Uses 0 and 1. The fundamental number system for computers, as digital circuits have two states: on (1) and off (0).
- Octal (Base 8): Uses 0-7. Historically used in computing, still common in Unix file permissions (chmod 755).
- Decimal (Base 10): Uses 0-9. The standard human-readable number system we use daily.
- Hexadecimal (Base 16): Uses 0-9 and A-F. Compact representation for binary data, commonly used for colors (#FF5733), memory addresses, and MAC addresses.
💡 Fun fact: The Babylonians used base 60 (sexagesimal), which is why we have 60 seconds in a minute and 60 minutes in an hour!