Hexadecimal Number System (2024)

A System of writing or denoting a Number is called a Number System. Number System is a Mathematical notation for portraying the Numbers using several symbols and digits. In Mathematics, there are two types of Number Systems. They are positional Number Systems and non-positional Number Systems. A non positional System is a Number System in which the value of a digit does not vary with its position. However, in the positional Number System, the value of a digit depends on its position in the Number. Hexadecimal Number System is a positional Number System.

Hexadecimal Number System:

The value of any digit in positional Number System depends on the following:

  • The digit whose value is to be determined

  • Position of the digit in the Number

  • Base or radix of the Number System

The Hexadecimal Number System has the base as 16 (hexa = 6 and deci = 10). So it is also called the base 16 Number System. In this Number System, there are 16 digits which are used in representing Numbers in Hexadecimal form. It is similar to the Decimal Number System because the first 10 digits remain the same in both the Number Systems. However, 10 in the Decimal Number System is represented as A in the Hexadecimal System, 11 as B, 12 as C, 13 as D, 14 as E, 15 as F and 16 as 10. So the 16 digits of the Hexadecimal Number System are 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F.

Place Value of Digits in Hexadecimal Number System:

A Hexadecimal Number has two parts namely the integer part and the fraction part. Integer part includes the Number to the left of the Decimal point and the fraction part indicates the digits to the right of the Decimal point. The digits of a Number in Hexadecimal form has a weightage in powers of 16. The power of 16 increases as the digit is towards the left of the Decimal point whereas the power decreases as the digit is towards the right of the Decimal point.

(Image will be Uploaded soon)

Example: (9AB.47)16 is a Hexadecimal Number

The Number is written in expanded form as

9 x 162 x A x 161 + B x 160 + 4 x 16-1 + 7 x 16-2

Hexadecimal Conversion Table:

Hexadecimal Numbers can also be represented in Binary, Octal and Decimal form. The table below denotes the representation of a Hexadecimal digit in other forms.

Hexadecimal Digit

Decimal Equivalent

Binary Equivalent

0000

1

1

0001

2

2

0010

3

3

0011

4

4

0100

5

5

0101

6

6

0110

7

7

0111

8

8

1000

9

9

1001

A

10

1010

B

11

1011

C

12

1100

D

13

1101

E

14

1110

F

15

1111

Conversion of Numbers in other Positional Systems to Hexadecimal Form:

Decimal to Hexadecimal Number System:

The Decimal Number is divided by 16 and the Hexadecimal equivalent of the remainder is noted. The quotient obtained is again divided by 16 and the Hexadecimal equivalent of the remainder is noted. The division is further continued till the quotient is equal to 0. The Number in Hexadecimal form is the remainders written from bottom to top.

Example:

Convert the base 10 Number 242 into Hexadecimal form.

Solution:

16

242

16

15


2 ⟶ 2

15 ⟶ F

(242)10 = (F2)16

Binary to Hexadecimal Conversion:

To convert a Binary Number into Hexadecimal form, the digits are first separated into groups of 4 from the Decimal point towards the right and the left. The left out digits are appended with the required Number of zeroes to form a group of 4 Binary digits. Each group of 4 Binary digits is replaced with a single Hexadecimal equivalent as depicted in the conversion table.

Example:

Convert (1010001011.10101001111)2 into Hexadecimal Number

Solution:

The integer part is grouped as 0010 1000 1011. Its Hexadecimal equivalent is (28B)16

The fraction part is grouped as 1010 1001 1110. Its Hexadecimal equivalent is (A9E)16

So the Number in Hexadecimal form is (28B. A9E)16

Octal to Hexadecimal Conversion:

Any Octal Number is first converted to Decimal form. The Decimal Number obtained is converted into a Hexadecimal Number using the method explained above.

Example:

Convert (121)8 into Hexadecimal form.

Solution:

(121)8 is converted into Decimal form by multiplying each digit by its positional value of 8.

(121)8 = 1x 82 + 2 x 81 + 1 x 80 = 64 + 16 + 1 = (81)10

81 is then converted to Hexadecimal form as follows:

16

81

16

5


1 ⟶ 1

5 ⟶ 5

So (121)8 = (51)16

Hexadecimal to Decimal Conversion:

Any Number in Hexadecimal form is converted into its Decimal equivalent by multiplying each digit with its positional values of 16.

Example:

Convert (AB4)16 into Decimal Number.

Solution:

(AB4)16 = A x 162 + B x 161 + 4 x 160 = 10 x 64 + 11 x 16 + 4 x 1 = (820)10

Hexadecimal to Binary Conversion:

A Hexadecimal Number is converted into a Binary Number by writing the 4 digit Binary equivalent of each Hexadecimal digit in the Number by looking into the conversion table.

Example:

Convert (C7D)16 into base 2 Number.

Solution:

Binary equivalent of

C => 1100

7 => 0111

D => 1101

So (C7D)16 = (110001111101)2

Hexadecimal to Octal Conversion:

A Hexadecimal digit can be converted into Octal form by first converting it into a Decimal Number and then writing its Octal equivalent.

Example:

Convert (AB4)16 into Octal Number.

Solution:

(AB4)16 is first converted into Decimal form by multiplying each digit with the positional values.

(AB4)16 = A x 162 + B x 161 + 4 x 160 = 10 x 64 + 11 x 16 + 4 x 1 = (820)10

The Number is then converted to Octal form by dividing it by 8 and noting down the remainders. The remainder from bottom to top is the Octal equivalent.

The Number obtained by dividing 820 and noting down the remainders is 1464

So, (AB4)16 = (1464)8

Fun Facts:

  • An Octal Number can also be converted into Hexadecimal form by first converting it into a Binary equivalent. The Binary equivalent can be divided into groups of 3 and their Octal equivalent can be written using the Binary to Octal conversion table.

Octal Digit

1

2

3

4

5

6

7

Binary Equivalent

000

001

010

011

100

101

110

111


Similarly, a Hexadecimal Number can be converted into Octal form by converting it into a Binary Number. The Binary Number is then divided into groups of three digits and their Octal equivalent is written using the above conversion table.

Disadvantages of using Hexadecimal System

In the Hexadecimal System, 16 digits ranging from 0 to 9 and A to F, are used to represent any Number. The Hexadecimal System is preferred over any other System as it saves space in representing larger Numbers. However, there are some disadvantages too of using the Hexadecimal System, which is as follows:

  • Difficult to read and write

  • Troublesome for operations like multiplication and division

  • Is the most difficult language while dealing with computer data

Representation of Hexadecimal Digits

Hexadecimal Digit

Equivalent Number into Decimal

Equivalent Binary Number

0000

1

1

0001

2

2

0010

3

3

0011

4

4

0100

5

5

0101

6

6

0110

7

7

0111

8

8

1000

9

9

1001

A

10

1010

B

11

1011

C

12

1100

D

13

1101

E

14

1110

F

15

1111

Practice Questions

1. Convert the following Hexadecimal Numbers into Binary Numbers:

  1. (67F)16

  2. (76)16

  3. (AE5)16

  4. (5C2)16

  5. (58B)16

This was all about the Hexadecimal Number System. For more such information, access free resources available on the Vedantu website useful for the state board, CBSE, ICSE, and competitive examinations. All NCERT Solutions for all subjects are available on the Vedantu website.

Hexadecimal Number System (2024)

FAQs

What is hexadecimal number system short answer? ›

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.

How do you solve hexadecimal system? ›

Steps:
  1. Divide the decimal number by 16. Treat the division as an integer division.
  2. Write down the remainder (in hexadecimal).
  3. Divide the result again by 16. Treat the division as an integer division.
  4. Repeat step 2 and 3 until result is 0.
  5. The hex value is the digit sequence of the remainders from the last to first.

How many digits are there in the hexadecimal number system group of answer choices 0 9 10 15 16? ›

Unlike the decimal system representing numbers using ten symbols, hexadecimal uses sixteen distinct symbols, most often the symbols "0"–"9" to represent values 0 to 9 and "A"–"F" (or "a"–"f") to represent values from ten to fifteen.

How many possible digits are there in a hexadecimal system choose the answer? ›

Hexadecimal is a numbering system with base 16. It can be used to represent large numbers with fewer digits. In this system there are 16 symbols or possible digit values from 0 to 9, followed by six alphabetic characters -- A, B, C, D, E and F.

How do you write 16 in hexadecimal? ›

However, 10 in the Decimal Number System is represented as A in the Hexadecimal System, 11 as B, 12 as C, 13 as D, 14 as E, 15 as F and 16 as 10.

How to write 32 in hexadecimal? ›

Step 1: Divide (32)10 successively by 16 until the quotient is 0. Step 2: Read from the bottom (MSB) to the top (LSB) as 20.

How to do hexadecimal simple? ›

To convert:
  1. If the denary number is bigger than 16, divide it by 16. Take the hex equivalent of this result - this represents the first digit. Take the hex equivalent of the remainder - this represents the second digit.
  2. If the denary number is smaller than 16, take the hex equivalent of the denary number.

How to calculate hex code? ›

Summary – Reading HEX Color Codes

We always multiply the first number of each pair by 16, then add the two numbers together to get our R, G, or B value. The closer that number is to 255, the brighter and more saturated it is. The closer these values are to 0, the darker and less colorful it is.

What is ffff in hexadecimal? ›

Hexadecimal notation FFFF equals 65535 in decimal value. What is the decimal to hexadecimal formula? The decimal to hexadecimal conversion involves dividing the decimal number by 16 and noting the remainders, then assigning hexadecimal equivalents.

How to understand hexadecimal? ›

Digits in hexadecimal use the standard symbols 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9 to represent the corresponding value, and use the first six letters of the alphabet to represent the values 10 through 15 (E.G: A, B, C, D, E, F). In programming, we prefix hexadecimal constants with 0x , with some exceptions.

What is the largest 5 digit number in the hexadecimal system? ›

As expressed on digital calculators, equivalent hex digits for decimal 10 thru 15 is expressed as: A, b, C, d, E and F. Yes 99999 or FFFFF is the last 5 digit number for hexadecimal system. FFFFF is the greatest 5 digit hexadecimal number & 99999 is the greatest 5 digit decimal (base 10) number.

How to solve hexadecimal number system? ›

The decimal to hexadecimal conversion is done by using the base number of hexadecimal that is 16 so the number needs to be divided by 16 until the quotient is zero. Let us look at an example. Example: Convert (150)10 ( 150 ) 10 to hexadecimal. Solution: Divide 150 by 16 until the quotient is zero.

How to count hexadecimal numbers? ›

Counting in hex is a lot like counting in decimal, except there are six more digits to deal with. Once a digit place becomes greater than "F", you roll that place over to "0", and increment the digit to the left by 1. And once you've reached 1F16, roll up to 2016 and keep churning the right-most digit from 0 to F.

How to write a hexadecimal number? ›

To avoid confusion with decimal, octal or other numbering systems, hexadecimal numbers are sometimes written with a "h" after or "0x" before the number. For example, 63h and 0x63 mean 63 hexadecimal.

What is an example of hexadecimal? ›

For example: 7B316,6F16,4B2A16 7 B 3 16 , 6 F 16 , 4 B 2 A 16 are hexadecimal numbers. A hexadecimal number system is also known as a positional number system as each digit has a weight of power 16.

What is the hexadecimal number system splashlearn? ›

What Is the Hexadecimal Number System? The base of a hexadecimal number system is 16. It uses the 16 symbols given by 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F to write all the numbers. The place values in the hexadecimal number system are defined in terms of powers of 16.

Why is it called hexadecimal system? ›

In The Art of Computer Programming, Donald Knuth [8, p. 202] notes that today's prevalent term for base 16, hexadecimal, is “a mixture of Greek and Latin stems,” 6 namely the Greek ἕξ (héx, “six”) and the Latin decem (“ten”).

Top Articles
How to Calculate Conversion Rate on Amazon
The Purpose of Parables
417-990-0201
Promotional Code For Spades Royale
Lifewitceee
Tabc On The Fly Final Exam Answers
Pangphip Application
Manhattan Prep Lsat Forum
Workday Latech Edu
When is streaming illegal? What you need to know about pirated content
No Hard Feelings Showtimes Near Metropolitan Fiesta 5 Theatre
Blairsville Online Yard Sale
What happens if I deposit a bounced check?
Mustangps.instructure
Mail Healthcare Uiowa
Weapons Storehouse Nyt Crossword
Xrarse
Valentina Gonzalez Leaked Videos And Images - EroThots
Methodist Laborworkx
2016 Hyundai Sonata Price, Value, Depreciation & Reviews | Kelley Blue Book
Nj State Police Private Detective Unit
Mills and Main Street Tour
Jesus Calling Oct 27
Conan Exiles Colored Crystal
Define Percosivism
CANNABIS ONLINE DISPENSARY Promo Code — $100 Off 2024
Site : Storagealamogordo.com Easy Call
Decosmo Industrial Auctions
Heart and Vascular Clinic in Monticello - North Memorial Health
Titanic Soap2Day
683 Job Calls
Aspenx2 Newburyport
BJ 이름 찾는다 꼭 도와줘라 | 짤방 | 일베저장소
Ihs Hockey Systems
Trust/Family Bank Contingency Plan
Taktube Irani
Whas Golf Card
Hannibal Mo Craigslist Pets
Viewfinder Mangabuddy
Page 5662 – Christianity Today
15 Best Things to Do in Roseville (CA) - The Crazy Tourist
Trap Candy Strain Leafly
SF bay area cars & trucks "chevrolet 50" - craigslist
Casamba Mobile Login
O'reilly's Palmyra Missouri
Lucyave Boutique Reviews
Movie Hax
bot .com Project by super soph
Tanger Outlets Sevierville Directory Map
Renfield Showtimes Near Regal The Loop & Rpx
Latest Posts
Article information

Author: Tish Haag

Last Updated:

Views: 6079

Rating: 4.7 / 5 (67 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Tish Haag

Birthday: 1999-11-18

Address: 30256 Tara Expressway, Kutchburgh, VT 92892-0078

Phone: +4215847628708

Job: Internal Consulting Engineer

Hobby: Roller skating, Roller skating, Kayaking, Flying, Graffiti, Ghost hunting, scrapbook

Introduction: My name is Tish Haag, I am a excited, delightful, curious, beautiful, agreeable, enchanting, fancy person who loves writing and wants to share my knowledge and understanding with you.