2023 2024 EduVark > Education Discussion > General Discussion


  #1  
April 27th, 2015, 08:08 AM
Unregistered
Guest User
 
Hex To Dec

I am Anjali and I want to convert decimal value from a hex number so can you please tell me how can I convert it? Can you please provide me the website from which I get the Hexadecimal to decimal converter?
  #2  
February 25th, 2017, 08:27 AM
Unregistered
Guest User
 
Re: Hex To Dec

Hi buddy would you plz let me know How to Calculate Hexadecimal to Decimal , as I am doing preparation of a competition exam ??
  #3  
February 25th, 2017, 08:27 AM
Super Moderator
 
Join Date: Mar 2012
Re: Hex To Dec

Hex, or hexadecimal, is a number system of base 16.

Decimal number system is the most commonly used and the most familiar one to the general public. It is also known as Base 10 numbering system since it is based on 10 following symbols: 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.

Here are the steps to convert hex to decimal:

Get the decimal equivalent of hex from table.
Multiply every digit with 16 power of digit location.
(zero based, 7DE: E location is 0, D location is 1 and the 7 location is 2)
Sum all the multipliers.

Here is an example:

7DE is a hex number
7DE = (7 * 162) + (13 * 161) + (14 * 160)
7DE = (7 * 256) + (13 * 16) + (14 * 1)
7DE = 1792 + 208 + 14
7DE = 2014 (in decimal number)

Hex to decimal conversion examples

(1D9)16 = (473)10
(80E1)16 = (32993)10
(10CE)16 = (4302)10

Hex to Decimal Conversion Chart
Hexadecimal Decimal

0 0
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
A 10
B 11
C 12
D 13
E 14
F 15


Quick Reply
Your Username: Click here to log in

Message:
Options



All times are GMT +5. The time now is 04:37 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Content Relevant URLs by vBSEO 3.6.0

1 2 3 4 5 6 7 8