Now, In this post . I will explain how to convert binary ( base-2) to hexadecimal (base-16) . Check it out!
STEP 1
Divide the binary number into sets of 4 digits. Add leading zeros as needed. For example, write the binary number 11101100101001 as 0011 1011 0010 1001.
STEP 2
Use the following table to convert each 4-digit binary string to a single hex digit: 1 (1), 10 (2), 11 (3), 100 (4), 101 (5), 110 (6), 111 (7), 1000 (8), 1001 (9), 1010 (A), 1011 (B), 1100 (C), 1101 (D), 1110 (E), and 1111 (F). The digits in () are the hex equivalents to the preceding binary number.
STEP 3
Remove the spaces of the result. You should have your hexadecimal number now.
Easy?? :D
Try this at home , good luck!
Source :


0 comments:
Post a Comment