Hex, Binary, Decimal Converter
Convert between different number systems
Number Systems Explained
- Decimal (Base 10): 0-9, everyday numbers
- Hexadecimal (Base 16): 0-9 and A-F, used in colors and memory addresses
- Binary (Base 2): 0 and 1 only, how computers store data
- Octal (Base 8): 0-7, used in Unix file permissions
Common Conversions
- 255 = FF (hex) = 11111111 (binary)
- 128 = 80 (hex) = 10000000 (binary)
- 16 = 10 (hex) = 10000 (binary)
- 10 = A (hex) = 1010 (binary)