Hexadecimal Number System

Hexadecimal Number System

The hexadecimal number system is a type of number system, that has a base value equal to 16. It is also pronounced sometimes as ‘hex’. Hexadecimal numbers are represented by only 16 symbols. These symbols or values are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E and F. Each digit represents a decimal value. For example, D is equal to base-10 13.

Hexadecimal number systems can be converted to other number systems such as binary number (base-2), octal number (base-8) and decimal number systems (base-10).  The concept of the number system is widely explained in the syllabus of Class 9.

The list of 16 hexadecimal digits with their equivalent decimal, octal and binary representation is given here in the form of a table, which will help in number system conversion. This list can be used as a translator or converter also.

Hexadecimal Number System Table

Below is the table of hexadecimal number systems with equivalent values of the binary and decimal number systems.

Decimal Numbers4-bit Binary NumberHexadecimal Number
000000
100011
200102
300113
401004
501015
601106
701117
810008
910019
101010A
111011B
121100C
131101D
141110E
151111F

Hexadecimal Number System Conversions

As we know, there are 16 digits in the hexadecimal number system, represented from 0 to 9 same as decimals, but after that, it starts with an alphabetical representation of preceding numbers such as A, B, C, D and E. Let us see the conversion of ‘hex’ into other number systems.

Hexadecimal to Decimal Conversion

Here, you will see the representation of a hexadecimal number into decimal form.

Hexadecimal

0123456789ABCDEF
Decimal01234567891011121314

15

Decimal to Hexadecimal Conversion

You have learned how to convert hexadecimal numbers to decimal numbers. Now let us find out how we can convert a decimal number into a hexadecimal number system. Follow the below steps:

  • Firstly divide the number by 16
  • Take the quotient and divide again by 16
  • The remainder left will produce the hex value
  • Repeats the steps until the quotient has become 0

Example: Convert (242)10 into hexadecimal.

Solution: Divide 242 by 16 and repeat the steps, till the quotient is left as 0.

decimal to hexadecimal number system

Therefore, (242)10 = (F2)16

Hexadecimal to Octal Conversion

Here, you will see the representation of a hexadecimal number into octal number form.

Hexadecimal

0123456789ABCDEF
Octal0123456710111213141516

17

Octal to Hexadecimal Conversion

To convert octal to hex, we have to first convert octal number to decimal and then decimal to hexadecimal. Let us understand it with the help of an example;

Example: Convert (121)8 into hexadecimal.

Solution: First convert 121 into decimal number.

⇒ 1 × 82 + 2 × 81 + 1 × 80
⇒ 1 × 64 + 2 × 8 + 1 × 1
⇒ 64 + 16 + 1
⇒ 81

(121)8 = 8110

Now converting 8110 into a hexadecimal number.

decimal to hexadecimal

Therefore, 8110 = 5116

Hexadecimal to Binary Conversion

Here, you will see the representation of a hexadecimal number into binary form. We can use only 4 digits to represent each hexadecimal number, where each group has a distinct value from 0000 (for 0) and 1111 (for F= 15 =8 + 4 + 2 + 1).

Hexadecimal

0123456789ABCDEF
Binary0110111001011101111000100110101011110011011110

1111

Binary to Hexadecimal Conversion

Binary to hexadecimal conversion is a simple method to do. You just have to put the values of the binary number to the relevant hexadecimal number.

Example: Convert (11100011)2 to hexadecimal.
Solution: From the table, we can write, 11100011 as E3.

Therefore, (11100011)2 = (E3)16

Facts of Hexadecimal Number System

  • Out of many types of number representation techniques, the Hexadecimal number system is one having a value of base 16.
  • So Hexadecimal numbers have 16 symbols or digital values, i.e 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F.
  • A, B, C, D, E, F are single bit representations of 10, 11, 12, 13, 14 and 15 respectively.
  • The addition of either an prefix or an h prefix indicates Hexadecimal.
  • A power of 16 is the weight of the position of every digit.

Solved Examples on Hexadecimal number system

Example 1: What is 5C6 (Hexadecimal)?

Solution: Step 1: The “5 “ is the “16 x 16” position, so that means 5 x16 x16

Step 2: The ‘C’ (12) is in the “16” position, so that means 12 x 16.

Step 3: The “6” in the “1” position so that means 6.

Answer is : 5C6 = 5 x 16 x 16 + 12 x 16 +6 = (1478 ) in Decimal.

Example 2: What is 3C5 (Hexadecimal)?

Solution: Step 1: The “3 “ is the “16 x 16” position, so that means 3 x16 x16

Step 2: The ‘C’ (12) is in the “16” position, so that means 12 x 16.

Step 3: The “5” is in the “1” position so that means 5.

Answer is : 3C5 = 3 x 16 x 16 + 12 x 16 + 5 = (965) in Decimal.

Example 3: What is 7B5 (Hexadecimal)?

Solution: Step 1: The “7 “ is the “16 x 16” position, so that means 7 x16 x16

Step 2: The ‘B’ (11) is in the “11” position, so that means 11 x 16.

Step 3: The 5” in the “1” position so that means 5.

Answer is : 7B5 = 7 x 16 x 16 + 11 x 16 +5 = (1973) in Decimal.

Example 4: What is 2E8 (Hexadecimal)?

Solution: Step 1: The “2 “ is the “16 x 16” position, so that means 2 x16 x16

Step 2: The ‘E’ (14) is in the “16” position, so that means 14 x 16.

Step 3: The “2” is in the “1” position so that means 2.

Answer is : 2E8 = 2 x 16 x 16 + 14 x 16 +8 = (744) in Decimal.

Example 5: What is 4F8 (Hexadecimal)?

Solution: Step 1: The “4 “ is the “16 x 16” position, so that means 4 x16 x16

Step 2: The ‘F’ (15) is in the “16” position, so that means 15 x 16.

Step 3: The “8” is in the “1” position, which means 8.

Answer is : 4F8 = 4 x16 x 16 + 15 x 16 +8 = (1272) in Decimal.

Post a Comment

0 Comments