Photo AI

Last Updated Sep 26, 2025

Converting Between Binary & Hexadecimal Simplified Revision Notes

Revision notes with simplified explanations to understand Converting Between Binary & Hexadecimal quickly and effectively.

user avatar
user avatar
user avatar
user avatar
user avatar

205+ students studying

Converting Between Binary & Hexadecimal

Binary and Hexadecimal

Binary (base 2) and hexadecimal (base 16) conversions are very useful for programmers because hexadecimal makes large binary numbers easier to manage. Each hexadecimal digit represents exactly four binary digits, also called a nibble, which makes converting between the two systems quick and straightforward.

Why Hexadecimal is Useful

  • Compact: It's much shorter than binary. Instead of writing 8 bits (e.g., 11101011), you can just write two hex digits (EB).
  • Easy to Convert: Since each hex digit corresponds to exactly 4 binary digits, conversion is quick and doesn't require complex calculations.

Converting Binary to Hexadecimal

Method

  1. Split the binary number into nibbles (groups of 4 bits).
  2. Convert each nibble to its hexadecimal equivalent.

Worked Example 1

infoNote

Question: Convert 11101011 to hexadecimal.

Step 1: Split the binary number into two nibbles

  • A nibble is a group of 4 bits, so we split the 8-bit binary number into two nibbles:1110 and 1011.
  • This makes it easier to convert each nibble to hexadecimal.

Step 2: Convert the first nibble to hex

  • The first nibble is 1110.
  • 1110 in binary is equivalent to E in hexadecimal.
  • This is because the binary value 1110 represents 14, and 14 is E in hex.

Step 3: Convert the second nibble to hex

  • The second nibble is 1011.
  • 1011 in binary is equivalent to B in hexadecimal.
  • This is because the binary value 1011 represents 11, and 11 is B in hex.

Step 4: Combine the hex digits

  • Now that we've converted both nibbles, we combine the hex digits E and B.
  • Therefore, 11101011 in binary is EB in hexadecimal.

Final Answer: Hexadecimal equivalent

  • The binary number 11101011 is equal to EB in hexadecimal.

Worked Example 2

infoNote

Question: Convert 10011011 to hexadecimal.

Step 1: Split the binary number into two nibbles

  • A nibble is a group of 4 bits, so we split the 8-bit binary number into two nibbles:1001 and 1011.
  • This makes it easier to convert each nibble to hexadecimal.

Step 2: Convert the first nibble to hex

  • The first nibble is 1001.
  • 1001 in binary is equivalent to 9 in hexadecimal.
  • This is because the binary value 1001 represents 9, which is the same in both denary and hexadecimal.

Step 3: Convert the second nibble to hex

  • The second nibble is 1011.
  • 1011 in binary is equivalent to B in hexadecimal.
  • This is because the binary value 1011 represents 11, and 11 is B in hex.

Step 4: Combine the hex digits

  • Now that we've converted both nibbles, we combine the hex digits 9 and B.
  • Therefore, 10011011 in binary is 9B in hexadecimal.

Final Answer: Hexadecimal equivalent

  • The binary number 10011011 is equal to 9B in hexadecimal.

Converting Hexadecimal to Binary

Method

  1. Replace each hex digit with its 4-bit binary equivalent.

Worked Example 1

infoNote

Question: Convert hex 7D to binary.

Step 1: Convert the first hex digit to binary

  • The first hex digit is 7.
  • In hexadecimal, 7 is represented as 0111 in binary.
  • This is because 7 in hex is the same as 7 in denary, and 7 in binary is 0111 (using 4 bits).

Step 2: Convert the second hex digit to binary

  • The second hex digit is D.
  • In hexadecimal, D is equivalent to 1101 in binary.
  • This is because D in hex represents 13 in denary, and 13 in binary is 1101.

Step 3: Combine the two binary groups

  • Now that we've converted both hex digits, we combine their binary equivalents:0111 (for 7) and 1101 (for D).
  • Therefore, 7D in hex is 01111101 in binary.

Final Answer: Binary equivalent

  • The hexadecimal number 7D is equal to 01111101 in binary.

Worked Example 2

infoNote

Question: Convert hex A4 to binary.

Step 1: Convert the first hex digit to binary

  • The first hex digit is A.
  • In hexadecimal, A is represented as 1010 in binary.
  • This is because A in hex represents 10 in denary, and 10 in binary is 1010 (using 4 bits).

Step 2: Convert the second hex digit to binary

  • The second hex digit is 4.
  • In hexadecimal, 4 is represented as 0100 in binary.
  • This is because 4 in both hex and denary is the same, and 4 in binary is 0100.

Step 3: Combine the two binary groups

  • Now that we've converted both hex digits, we combine their binary equivalents:1010 (for A) and 0100 (for 4).
  • Therefore, A4 in hex is 10100100 in binary.

Final Answer: Binary equivalent

  • The hexadecimal number A4 is equal to 10100100 in binary.
infoNote

Key Points to Remember

  • Hexadecimal uses 16 different digits: 0-9 and A-F (where A = 10, B = 11, up to F = 15).
  • Binary uses 2 digits: 0 and 1.
  • 1 hex digit = 4 binary digits.
  • To convert binary to hex, group binary into 4-bit nibbles and convert each to a hex digit.
  • To convert hex to binary, replace each hex digit with its 4-bit binary equivalent.
Books

Only available for registered users.

Sign up now to view the full note, or log in if you already have an account!

500K+ Students Use These Powerful Tools to Master Converting Between Binary & Hexadecimal

Enhance your understanding with flashcards, quizzes, and exams—designed to help you grasp key concepts, reinforce learning, and master any topic with confidence!

110 flashcards

Flashcards on Converting Between Binary & Hexadecimal

Revise key concepts with interactive flashcards.

Try Computer Science Flashcards

11 quizzes

Quizzes on Converting Between Binary & Hexadecimal

Test your knowledge with fun and engaging quizzes.

Try Computer Science Quizzes

15 questions

Exam questions on Converting Between Binary & Hexadecimal

Boost your confidence with real exam questions.

Try Computer Science Questions

5 exams created

Exam Builder on Converting Between Binary & Hexadecimal

Create custom exams across topics for better practice!

Try Computer Science exam builder

13 papers

Past Papers on Converting Between Binary & Hexadecimal

Practice past papers to reinforce exam experience.

Try Computer Science Past Papers

Other Revision Notes related to Converting Between Binary & Hexadecimal you should explore

Discover More Revision Notes Related to Converting Between Binary & Hexadecimal to Deepen Your Understanding and Improve Your Mastery

96%

114 rated

Data Storage & Compression

Units of Data Storage

user avatar
user avatar
user avatar
user avatar
user avatar

370+ studying

198KViews

96%

114 rated

Data Storage & Compression

Converting Between Denary & Binary

user avatar
user avatar
user avatar
user avatar
user avatar

320+ studying

194KViews

96%

114 rated

Data Storage & Compression

Binary Addition

user avatar
user avatar
user avatar
user avatar
user avatar

324+ studying

183KViews

96%

114 rated

Data Storage & Compression

Converting Between Denary & Hexadecimal

user avatar
user avatar
user avatar
user avatar
user avatar

316+ studying

189KViews
Load more notes

Join 500,000+ GCSE students using SimpleStudy...

Join Thousands of GCSE Students Using SimpleStudy to Learn Smarter, Stay Organized, and Boost Their Grades with Confidence!

97% of Students

Report Improved Results

98% of Students

Recommend to friends

500,000+

Students Supported

50 Million+

Questions answered