Question:
what is the method to convert a number from hexadesimal to binary,binary to hehadesimal?
rajashekhar_hubli
2006-09-07 02:30:17 UTC
i want to know different number systems like binary,octal,hexadesimal,decimal etc.and converting value from one number system to another number (means equalant numbers in different number systems -,their representation and convertion)
thank you...
Four answers:
Truth Seeker
2006-09-07 02:44:05 UTC
Binary to Hex Conversion

It is easy to convert from an integer binary number to hex. This is accomplished by:



Break the binary number into 4-bit sections from the LSB to the MSB.

Convert the 4-bit binary number to its Hex equivalent.



For example, the binary value 1010111110110010 will be written:



1010 1111 1011 0010

A F B 2





------------------------------...



Hex to Binary Conversion

It is also easy to convert from an integer hex number to binary. This is accomplished by:



Convert the Hex number to its 4-bit binary equivalent.

Combine the 4-bit sections by removing the spaces.



For example, the hex value 0AFB2 will be written:



A F B 2

1010 1111 1011 0010



This yields the binary number 1010111110110010 or 1010 1111 1011 0010 in our more readable format.



TABLE:-



Binary Octal Decimal Hex

0000B 00Q 00 00H

0001B 01Q 01 01H

0010B 02Q 02 02H

0011B 03Q 03 03H

0100B 04Q 04 04H

0101B 05Q 05 05H

0110B 06Q 06 06H

0111B 07Q 07 07H

1000B 10Q 08 08H

1001B 11Q 09 09H

1010B 12Q 10 0AH

1011B 13Q 11 0BH

1100B 14Q 12 0CH

1101B 15Q 13 0DH

1110B 16Q 14 0EH

1111B 17Q 15 0FH

1 0000B 20Q 16 10H
N/A
2006-09-07 02:40:26 UTC
Use script in this page



http://www.mathepower.com/english/stellenwertsysteme.php



It accomodates 2-10 and 16 number systems.



For theory see



http://www.cstc.org/data/resources/60/convexp.html
leabow
2016-11-25 07:04:59 UTC
whats up! someone in my facebook crew printed this web page so I got here to provide it a seem. i'm surely taking area in the counsel. i'm e book-marking and could be tweeting this to my followers!
2006-09-07 02:37:24 UTC
well that's easy

I am pasting some links down here, you can go through it


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...