Introduction: How to Convert Binary to Hexadecimal in Less Than 5 Minutes
Please find the file attached below which walks you through the simple steps to make the conversion.
Step 1: Introduction
The following is a guide for coders to make quick conversions from binary to hexadecimal. (Base 2 and base 16) This can be used to fulfill coding requirements, for a math/ computer science class, or to learn about lower-level systems that you may want to build on top of. All you will require is some place for you to work out the solutions and basic counting skills
Step 2: Disclaimer
It is good for readers to know basic decimal to binary conversions, but it is not a requirement. The easy steps below can make the conversions easy without prior knowledge.
Step 3: Necessary Material
> Paper pen
> Calculator (as per preference)
Step 4: Introductory Note
> · Binary is a number system in base 2 – each digit can only store 2 values (1 or 0) in computer science they are usually grouped in groups of 8 called (also called a byte)
> Hex is a number system in base 16 – after the number 10, hex uses alphabets till F (number 15)
Step 5: Table 1- Additional Info and Powers of 2
We need to know the power of 2’s to carry out the following conversions.
Step 6:
1. Using the workspace, manually separate the binary digits into groups of 4 (also called a nibble) with the powers of 2 written below
Step 7:
2. If the leftmost nibble group does not have enough binary digits simply add 0’s to make the group of 4.
Step 8:
3. Go in the direction from right to left. (the opposite direction)
Step 9:
4. Use the first 4 powers of 2 (8421) write them below each nibble. Convert the binary number to decimal using power of 2’s. These are the place holders in number 2^3, 2^2, 2^1, 2^0
Step 10:
5. Multiply the 8,4,2,1’s with the binary digits (in simple words only multiply 1 binary digit to the following 8,4,2,1.
Step 11:
6. Add the products within each set of four.
Step 12:
7. Use letters after values above 9 so 10= A, 11=B, 12=C, 13=D, 14=E, 15=F
Step 13:
8. Find the equivalent hexadecimal number for each group using Powers of 2- (Refer to table 2)
Step 14:
9. Write the converted hexadecimals from right to left (the standard order)
Step 15: Congractulations!
Pat yourselves. You can now easily convert binary digits to hexadecimals in less than 5 minutes.
If you were confused in writing them from right to left, I suggest try the conventional way of going from left to right, it depends on what you prefer. However, in computer science it Is adviced to go in the opposite direction and then writing it conventionally. Make sure to double check the calculations! Check out wikiHow if you have further interests in learning other conversions. Thank you and enjoy your future computer science endeavors!
Comments
23 days ago on Step 15
Great methodology, I think a lot of people will find it useful! Well done)