answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

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

Convert the following binary number 0100110100011110 to a hexadecimal number?

hex =7


What is 10101010 in hexadecimal?

10101010 in decimal = 9A2112 in Hex.


How you convert 2011 binary form and hexadecimal form?

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


What is the hexadecimal symbol to the binary number 1010?

Binary(1010) = Hex(A)


What Convert 10111010 into hexadecimal binary number?

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"


Convert the hexadecimal number ABCDEF into binary and octal?

Start > All Programs > Accessories > Calculator In Calculator, View > Programmer. Select Hex. Type ABCDEF and then select binary. This gives this : 101010111100110111101111


How do you convert hexadecimal numbers into binary numbers?

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.


Example on how to convert binary to hex?

Group the binary into 4's. For example:0110110101100110 1101 01106 D 6


What is the binary equivalent of the decimal number 368?

The binary equivalent is 101110000. If you're using Windows 7, the built-in calculator will convert numbers between base 10, 8, 2 & hex


What does hexadecimal base 16 convert binary equal?

16 is the 4th power of 2. So a hexadecimal number is converted to binary by replacing each hex digit by the 4-bit binary number having the same value. Conversely, in converting binary to hexadecimal, we group every 4 bits starting at the decimal (binary?) point and replace it with the equivalent hex digit. For example, the hexadecimal number 3F9 in binary is 1111111001, because 3 in binary is 11, F (decimal 15) is 1111, and 9 is 1001.


What is 1000100.11010010.01000011.10110011 to hexidecimal?

assuming that the full stops break up the binary numbers: Binary 1000100 = Hex 44 Binary 11010010 = Hex D2 Binary 1000011 = Hex 43 Binary 10110011 = Hex B3


Why is it impossible to convert a decimal number to binary on a digit by digit basis as can be done for Hexadecimal?

Because - Hex is an exact multiple of binary - whereas decimal numbers need to be converted from base 10 to base 2.