answersLogoWhite

0

There is no such thing as a Hexadecimal Binary number.

It is either Hexadecimal Or Binary. Not both at the same time in one writing..

Binary to Hex is easy though.

split up the 8 binary into two of 4

1011 and 1010

8421 and 8421

How many 1s, How many2s etc.

We add together

1+2+8 = 11

2+8 = 10

The hex scale is from 0 to 9, A to F : 0123456789ABCDEF

11 Equals B

10 Equals A

your Binary number translated to a Hex Number is "BA"

User Avatar

Wiki User

15y ago

Still curious? Ask our experts.

Chat with our AI personalities

DevinDevin
I've poured enough drinks to know that people don't always want advice—they just want to talk.
Chat with Devin
MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
ReneRene
Change my mind. I dare you.
Chat with Rene

Add your answer:

Earn +20 pts
Q: What Convert 10111010 into hexadecimal binary number?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math

What is 10111010 in hexidecimal?

I assume the number is in binary. Separate the binary number from the right, 4 digits at a time: 1011 1011. Then convert each group of four binary digits to hexadecimal. In this case, 1011 is B, so the answer is 0xBB (the prefix 0x is often used to indicate hexadecimal).I assume the number is in binary. Separate the binary number from the right, 4 digits at a time: 1011 1011. Then convert each group of four binary digits to hexadecimal. In this case, 1011 is B, so the answer is 0xBB (the prefix 0x is often used to indicate hexadecimal).I assume the number is in binary. Separate the binary number from the right, 4 digits at a time: 1011 1011. Then convert each group of four binary digits to hexadecimal. In this case, 1011 is B, so the answer is 0xBB (the prefix 0x is often used to indicate hexadecimal).I assume the number is in binary. Separate the binary number from the right, 4 digits at a time: 1011 1011. Then convert each group of four binary digits to hexadecimal. In this case, 1011 is B, so the answer is 0xBB (the prefix 0x is often used to indicate hexadecimal).


Convert the hexadecimal number ABCDEF to octal and binary?

Octal = 52746757 Binary = 101010111100110111101111


How do you convert the binary number 10101010 into hex?

Convert each group of 4 bits into one hexadecimal digit. 1010 is "A" in hexadecimal, so this particular number is "AA".


Convert the hexadecimal number 221122 into binary octal and decimal?

221122: Binary = 1000100001000100100010 Octal = 10410442 Decimal = 2232610


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 )