How to use the Binary Decimal Converter
- Enter a number and select which base it's currently in (binary, decimal, hex or octal).
- The converter instantly shows the equivalent value in all the other three bases.
- Copy any of the converted values with one click.
How base conversion works
Any number in a given base is converted to decimal first by summing each digit multiplied by the base raised to its positional power — for binary, that means summing powers of 2; for hex, powers of 16; for octal, powers of 8. That decimal value is then converted into the other target bases using repeated division-and-remainder, which is the standard algorithm for base conversion.