answersLogoWhite

0


Best Answer

Each hexadecimal digit (or nybble) is the equivalent of 4 binary digits (or bits) with a decimal value of 0-15. Convert each nybble into (4) binary (digits) and string them together, remembering the conversion of decimal 0-15 to binary:

Hex -> Dec -> Binary

0 -> 00 -> 0000

1 -> 01 -> 0001

2 -> 02 -> 0010

3 -> 03 -> 0011

4 -> 04 -> 0100

5 -> 05 -> 0101

6 -> 06 -> 0110

7 -> 07 -> 0111

8 -> 08 -> 1000

9 -> 09 -> 1001

A -> 10 -> 1010

B -> 11 -> 1011

C -> 12 -> 1100

D -> 13 -> 1101

E -> 14 -> 1110

F -> 15 -> 1111

So to convert 0x6AF to binary:

6 -> 0110

A -> 1010

F -> 1111

=> 0x6AF = 0110 1010 1111

= 011010101111 (without the spaces showing the hex nybbles)

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

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

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 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 can i Convert 487 from hexadecimal to binary?

1. represent every individual digit of given hexadecimal in binary form like this 4---------> 0100 8---------> 1000 7---------> 0111 2. combine the individual binary digits in order to get the binary of given hexadecimal number 487 ------------> 0100 1000 0111 ( required binary number )


Convert hexadecimal 4F7B in to binary and decimal?

4F7B: Binary = 100111101111011 Decimal = 20347


Convert the hexadecimal number ABCDEF to octal and binary?

Octal = 52746757 Binary = 101010111100110111101111


Convert EF16 to a binary number?

The binary equivalent of the hexadecimal number EF16 is 1110111100010110.


Convert ABCD1 hexadecimal number to binary?

ABCD1 = 10101011110011010001


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

01


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?

In order to convert binary to hexadecimal using assembly language, the programmer must possess an understanding on boolean algebra or binary system in other words. A compiler is also needed to complete the program.


Convert 11011001 to decimal?

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