Base Converter
Convert numbers between different number bases: Binary (base 2), Octal (base 8), Decimal (base 10), and Hexadecimal (base 16).
Quick Base Conversions
- 255 (decimal) = FF (hex) [convert decimal to hex]
- FF (hex) = 255 (decimal) [convert hex to decimal]
- 255 (decimal) = 11111111 (binary) [convert decimal to binary]
- 11111111 (binary) = 255 (decimal) [convert binary to decimal]
- 255 (decimal) = 377 (octal) [convert decimal to octal]
- 377 (octal) = 255 (decimal) [convert octal to decimal]
- 1010 (binary) = A (hex) [convert binary to hex]
- A (hex) = 1010 (binary) [convert hex to binary]
- 1010 (binary) = 12 (octal) [convert binary to octal]
- 12 (octal) = 1010 (binary) [convert octal to binary]
- FF (hex) = 377 (octal) [convert hex to octal]
- 377 (octal) = FF (hex) [convert octal to hex]
About Number Base Conversion
Binary (Base 2): Uses digits 0 and 1. Commonly used in computing.
Octal (Base 8): Uses digits 0-7. Less common but used in some programming contexts.
Decimal (Base 10): Uses digits 0-9. The standard number system.
Hexadecimal (Base 16): Uses digits 0-9 and letters A-F. Widely used in computing and programming.