Convert Binary to Hexadecimal.
- Front page
- Base Converter
- Binary/Octal/Decimal/hexadecimal converter
Binary/Octal/Decimal/hexadecimal converter
How to use Base Converter
Enter the Binary value you want to convert and click the "Convert" button.
The input value will be calculated and the converted result will be displayed in Hexadecimal.
The calculation method for conversion is also displayed.
Numerical input range
Binary:0–1
Conversion by base number
How to convert from Binary to Hexadecimal
Method of calculation
When converting a binary number to hexadecimal, separate the numbers into 4-digit units and convert each 4-digit number to hexadecimal.
To convert 4 digits to hexadecimal, the first digit is 20, the second digit is 21, and the third digit is 22 sup>, calculate the fourth digit as 23.
Since it is a number from 0 to 15, if it is 10 or more, you can convert it to hexadecimal by replacing it with A to F.
Decimal | 10 | 11 | 12 | 13 | 14 | 15 |
---|---|---|---|---|---|---|
Hexadecimal | A | B | C | D | E | F |
- 1. Separates binary numbers into groups of 4 digits.
- 2. Convert the 4 digits to hexadecimal, setting the missing 4 digits to 0.
- 3. The value of the converted numbers is the result of converting them to hexadecimal.
Calculation example
Example: Convert Binary "1101001101" to Hexadecimal
Separate 1101001101 into every 4 digits.
"1101001101" → "0011 0100 1101"
Convert each digit to hexadecimal.
Binary | Convert to Hexadecimal |
---|---|
0011 | 21 + 20 = 3 |
0100 | 22 = 4 |
1101 | 23 + 22 + 20 = 13 |
If this is 10 or more, replace it with A to F and arrange it as 34D.
Therefore, converting the binary number "1101001101" to hexadecimal number becomes "34D".