Number Base Converter
Convert numbers instantly between binary, octal, decimal, and hexadecimal. Type in any field and the other bases update automatically. Supports integers up to 64 bits.
About Number Bases
A number base (or radix) determines how many unique digits are used to represent values. Decimal (base 10) is the everyday system using digits 0-9. Binary (base 2) uses only 0 and 1 and is the foundation of all digital computing, since transistors operate in two states. Octal (base 8) uses digits 0-7 and was historically popular in early computing as a compact representation of binary. Hexadecimal (base 16) extends decimal with the letters A-F, making it ideal for representing bytes, memory addresses, and color codes because each hex digit maps to exactly four binary digits. This converter handles arbitrarily large integers using BigInt, so you can work with values up to and beyond 64 bits without losing precision.