How to convert Hexadecimal to Decimal? Give Example?
griffinLincoln 17-March-2009 02:42:11 PM

Comments


Please visit this link for details www.permadi.com/tutorial/numHexToDec/index.html
Posted by HamidAliKhan


please visit

www.webelfin.com/webelfindesign/dechex.html
Posted by burhanalipk


Please visit:

www.permadi.com/tutorial/numHexToDec/index.html
Posted by sagitraz


The reverse of the procedure is easier than it seems, too. Given a hex value of 0xC4, all we need to do is to first convert to binary, and then to decimal.

To convert to binary, take the two hex characters and find their binary value:

C = 1100 0100 = 4

Now, make the two 4-bit strings into one 8–bit string:

11000100

Finally, add the bit values of the columns where you have a 1:

128 + 64 + 4 = 196
Posted by thomas



Posted: 18-March-2009 11:45:21 AM By: thomas

The reverse of the procedure is easier than it seems, too. Given a hex value of 0xC4, all we need to do is to first convert to binary, and then to decimal.

To convert to binary, take the two hex characters and find their binary value:

C = 1100 0100 = 4

Now, make the two 4-bit strings into one 8–bit string:

11000100

Finally, add the bit values of the columns where you have a 1:

128 + 64 + 4 = 196

Posted: 19-March-2009 02:52:09 AM By: sagitraz

Please visit:

www.permadi.com/tutorial/numHexToDec/index.html

Posted: 19-March-2009 04:26:44 AM By: burhanalipk

please visit

www.webelfin.com/webelfindesign/dechex.html

Posted: 19-March-2009 02:57:13 PM By: HamidAliKhan

Please visit this link for details www.permadi.com/tutorial/numHexToDec/index.html