answersLogoWhite

0


Best Answer

Arrange your binary number in Four number groups from right to left add zero's if needed.

So if your binary is 11011101 it will be 1101 1101

now replace your group with

0-0000

1-0001

2-0010

3-0011

4-0100

5-0101

6-0110

7-0111

8-1000

9-1001

A-1010

B-1011

C-1100

D-1101

E-1110

F-1111

and you get your number in hex

1101 1101 == DD

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

Group the binary representation into quartets either side of the "decimal" point. then convert as follows:

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.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you convert binary numbers to hexadecimal?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Computer Science

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


What is the hexadecimal for 11111011010?

If the above is decimal then in hexadecimal it is 2964492C2. If it is binary then in hexadecimal it is 7DA. If it is octal then in hexadecimal it is 49241208.


What is the purpose of the hexadecimal numbering system?

Hexadecimal number system is a number sytem with a Base of 16. The 'regular' system which we use every day is base-ten (decimal), with the digits 0-9.Having a base 16 system makes it easier to represent values of computer memory, as computers deal in binary (base 2), where every value is either one or zero (on or off).With hexadecimal, the digit values range from zero to fifteen, so symbols are needed to represent ten, eleven, ... fifteen as single digits. The letters A through F were chosen, so:A represents tenB = elevenC = twelveD = thirteenE = fourteenF = fifteen


Can you give me Example of hexadecimal to binary?

u can convert in following ways: a)direct use the table fo rconversion Eg: FF= 11111111 as F =1111 b)first convert to decimal and then to binary F is 15 so FF=15*16^1+15*16^0=255 now to binary 2 255 2 127 1 2 63 1 2 31 1 2 15 1 2 7 1 2 3 1 2 1 1 0 1 Ans=11111111


How does binary numbering system differ from the hexadecimal numbering system?

The decimal system we normally use is base 10. That means that each position has 10 times the place-value of the digit to the right of it.Binary is base 2. Hexadecimal is base 16.

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 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


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.


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