What does the number base converter offer?
- Binary to decimal conversion
- Binary to octal conversion
- Binary to hexa-decimal conversion
- Decimal to binary conversion
- Decimal to octal conversion
- Decimal to hexa-decimal conversion
- Octal to binary conversion
- Octal to decimal conversion
- Octal to hexa-decimal conversion
- Hexadecimal to binary conversion
- Hexadecimal to decimal conversion
- Hexadecimal to octal conversion
How does it work?
If a binary value is 1010, the converter will display-
- Decimal value: 10
- Octal value: 12
- Hexadecimal value: A
If a decimal value is 15, the converter will display-
- Binary value: 1111
- Octal value: 17
- Hexadecimal value: F
If a octal value is 233, the converter will display-
- Binary value: 10011011
- Decimal value: 155
- Hexadecimal value: 9B
If a hexadecimal value is AFB, the converter will display-
- Binary value: 101011111011
- Decimal value: 2811
- Octal value: 5373