Use the below conversion tool to convert a binary number to Hexadecimal number:
Binary Number | |
Hexadecimal Number |
Also Try:
- Binary to Decimal converter
- Binary to Octal converter
- Binary to Gray code converter
- Binary to text converter
Binary number
Binary numbering system uses only two symbols 0 and 1. Each digits of a binary number is referred to as bits. Binary system is also known as base -2 system. Each digit is represented by the increasing power of 2 from the LSB (Least Significant Bit). Binary system is the heart of digital electronics and is used for information flow. In digital electronics, 0 and 1 are used to denote logic states, high and low. Arithmetic operations are also possible in binary system.
Hexadecimal Number
Hexadecimal number system uses 16 different symbols to represent a numeric value. It uses numbers 0 to 9 and alphabets A to F for representation. . The place value of each digits of an hexadecimal number varies as the whole number powers of 16 starting from the right (Least Significant Digit). The first single digit number in hexadecimal system is 0 and the last is F. Similarly, the first two digit hexadecimal number is 10 and the last is FF and so on. It is used as an alternative for binary numbers by developers and programmers.
Read More: How to convert a binary number to a hexadecimal number
Binary to Hexadecimal conversion table
Binary Number | Hexadecimal Number | Decimal Number |
---|---|---|
0000 | 0 | 0 |
0001 | 1 | 1 |
0010 | 2 | 2 |
0011 | 3 | 3 |
0100 | 4 | 4 |
0101 | 5 | 5 |
0110 | 6 | 6 |
0111 | 7 | 7 |
1000 | 8 | 8 |
1001 | 9 | 9 |
1010 | A | 10 |
1011 | B | 11 |
1100 | C | 12 |
1101 | D | 13 |
1110 | E | 14 |
1111 | F | 15 |
0001 0000 | 10 | 16 |
Example-1: Convert 1111102 to Hexadecimal number
Split the binary number to a bits of four starting from the right.
0011 1110
From the above conversion table:
Binary number
| 0011 | 1110 |
Hexadecimal number | 3 | E |
Hence, 1111102 in its binary form is equivalent to 3E.
Example-2: Convert 110111002 to Hexadecimal number
Split the binary number to a bits of three starting from the right.
1101 1100
From the above conversion table:
Binary number
| 1101 | 1100 |
Hexadecimal number | D | C |
Hence, 110111002 in its binary form is equivalent to DC.
Also Try:
- Decimal to Binary converter
- Decimal to Octal converter
- Decimal to Hexadecimal converter
- Decimal to Gray code converter
- Octal to Binary converter
- Octal to Decimal converter
- Octal to Hexadecimal converter
- Octal to Gray code converter
- Hexadecimal to Decimal converter
- Hexadecimal to Octal converter
- Hexadecimal to Gray converter
- Gray Code to Binary converter
- Gray Code to Decimal converter
- Gray Code to Octal converter
- Gray Code to Hexadecimal converter
- Binary Converter
- Decimal Converter
- Octal Converter
- Hexadecimal Converter
- Text to binary converter
- Text to hex converter