answersLogoWhite

0


Best Answer

Binary to hexadecimal is very easy because hexadecimal numbers are designed specifically so that each hex digit is exactly 4 bits (i.e. 16 different values). So if you had this binary number:

binary: 100011011011110101000100001

You could put in commas every four places (starting on the left):

binary: 100,0110,1101,1110,1010,0010,0001

Then you could write the hex values immediately below:

binary: 0100,0110,1101,1110,1010,0010,0001

hex: 4 6 D E A 2 1

and the hex value would be 46DEA21.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you convert hexadecimal numbers into binary numbers?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Convert 110001100 into its decimal numbers?

The answer depends on what you are converting from: binary, ternary, octal, hexadecimal ...


Convert 110110.101 to hexadecimal?

Assuming the original was in binary, the answer is 36.A


Convert binary octal 864BF into hexadecimal?

Okay, I'm pretty sure that 864 binary is 30 hexadecimal. - RG


How you convert 2011 binary form and hexadecimal form?

The answer depends on what form you wish to convert binary and hex 2011 to.


Convert the hexadecimal number ABCDEF to octal and binary?

Octal = 52746757 Binary = 101010111100110111101111


Convert hexadecimal 4F7B in to binary and decimal?

4F7B: Binary = 100111101111011 Decimal = 20347


Convert EF16 to a binary number?

The binary equivalent of the hexadecimal number EF16 is 1110111100010110.


What does the binary number 00000001 convert to in the hexadecimal system?

01


Convert ABCD1 hexadecimal number to binary?

ABCD1 = 10101011110011010001


What is the hexadecimal value of the binary numbers 110011101111?

It is CEF0.


Why is Hexadecimal used?

It is used because it is easier to convert to and from binary to hexadecimal than decimal, and it uses less characters than binary. For instance: decimal: 65535 hex: FFFF binary: 1111111111111111


How do you convert binary to hexadecimal using assembly language?

Well, honey, in assembly language, you convert binary to hexadecimal by grouping the binary digits into sets of four, then converting each group into its hexadecimal equivalent. You can use bitwise operations like shifting and masking to make the conversion process smoother. Just remember, in the end, hexadecimal is just a fancy way of saying "base 16."