answersLogoWhite

0

Well, I believe you mean hexadecimal, not hexagon. Just like DECImal is base 10, BInary is base 2 and HEXADECImal is base 16. To convert by hand, you can convert binary to decimal, then decimal to hexadecimal.

For instance, 1011001 becomes 1*64 + 0*32 + 1*16 + 1*8 + 0*4 +0*2 +1*1 = 89.

Now we need to convert that to hexadecimal, so write out the the powers of 16: 16^0 = 1, 16^1 = 16, 16^2 = 256.

256 is larger than 89, so we only need two digits.

For the first digit:

16*1=16, 16*2=32, 16*3=48, 16*4=64, 16*5=80, 16*6=96.

96 is larger than 89, so the first digit (the 16^1 position) is 5.

Subtract 80 from 89 = 9.

16^0 = 1. 1*9 = 9. The second digit is 9

The hexadecimal equivalent is 59

Alternatively, (and faster) you can write out groups of four binary digits.

(Binary) = (Hexadecimal)

0000 = 0

0001 = 1

0010 = 2

0011 = 3

0100 = 4

0101 = 5

0110 = 6

0111 = 7

1000= 8

1001 = 9

1010 = A

1011 = B

1100 = C

1101 = D

1110 = E

1111 = F

Then segment the binary number into groups of four

(e.g. 10011010111001 becomes 10 0110 1011 1001 -- you can pad the first group with 2 zeroes to make it a group of 4)

and use the above mapping to turn that into 26B9.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you convert image to binary format?

To convert image to binary, you just have to convert image to binary. Hope this helps.


Convert 186 decimal numbers to its binary equivalent?

Convert 189 to binary number


How do you convert 47.5 into binary?

To convert 47.5 into binary, first convert the integer part (47) to binary. 47 in binary is 101111. For the fractional part (0.5), multiply by 2, resulting in 1.0, which indicates that the binary representation of 0.5 is .1. Combining both parts, 47.5 in binary is 101111.1.


How do you subtract 2 binary numbers?

An easy way is to convert them to decimal, subtract, then convert the answer back to binary.


How do you Convert 180 into binary?

The number 180 in binary is 10110100


How do convert 5 into binary?

5 expressed in binary is 101


How does 11.25 convert binary into decimal?

11.25 is not a valid binary.


How do you convert 000010 in binary?

000010 in binary is 2 in decimal.


How you convert 2011 binary form and hexadecimal form?

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


How do you convert Denney into binary?

You will need to look up the ASCII numbers for each letter, then convert those number to binary. The word "Denny" in binary is: 0100010001100001011011100110111001111001


What is 97 in binary code?

You can easily convert decimal to binary in the scientific calculator - for example, the scientific calculator found in Windows. In this case, type the number in decimal, then click on "binary" to convert to binary.


Convert 13 into a binary number?

13 in decimal = 1101 in binary.