left-arrow-icon
kw-hp-icon

Hex to Decimal - Decimal to Hex

Convert hexadecimal to decimal (hex to dec) or decimal to hexadecimal (dec to hex)

Home

Converter

Hexadecimal to Decimal Converter


You can input in any of the fields and get equivalent values.
=

How to Convert Hex to Decimal?

  • Hexadecimal to Decimal converter - Multiply each digit with its place value and then add the product values

  • Eg to Convert 16 hex to decimal, place value of 6 is 160 and place value of 1 is 161

  • (16)16= (1 × 161) + (6 × 160)

  • Add the values to get the decimal equivalent which is 16+6=22

  • (16)16 = (22)10

How To Convert Decimal to Hex?

  • Decimal to Hexadecimal converter - Divde the number repeatedly by 16 till quotient is zero.

  • To convert 64 decimal to hex, Divide the number 64 by 16,the quotient is 4 ,remainder is 0

  • Again, divide 1 by 16,now the quotient is 0 ,remainder is 4

  • Write the remainder from top to botton 40

  • (64)10 = (40)16

Decimal to Hex Converter table

Conversion Table Icon

Decimal

Hexadecimal Number

0 in hexadecimal

0

1 in hexadecimal

1

2 in hexadecimal

2

3 in hexadecimal

3

4 in hexadecimal

4

5 in hexadecimal

5

6 in hexadecimal

6

7 in hexadecimal

7

8 in hexadecimal

8

9 in hexadecimal

9

10 in hexadecimal

A

11 in hexadecimal

B

12 in hexadecimal

C

13 in hexadecimal

D

14 in hexadecimal

E

15 in hexadecimal

F

16 in hexadecimal

10

17 in hexadecimal

11

18 in hexadecimal

12

19 in hexadecimal

13

20 in hexadecimal

14

22 in hexadecimal

16

25 in hexadecimal

19

30 in hexadecimal

1E

32 in hexadecimal

20

40 in hexadecimal

28

48 in hexadecimal

30

50 in hexadecimal

32

54 in hexadecimal

36

64 in hexadecimal

40

100 in hexadecimal

64

200 in hexadecimal

C8

255 in hexadecimal

FF

512 in hexadecimal

200

1000 in hexadecimal

3E8

10000 in hexadecimal

2710

Frequently Asked Questions on Hex to Decimal converter

FAQ icon

  • Hexadecimal is a numbering system which having 16 as base. It is used to represent large numbers. This number system is also called as base-16. Mainly used in computers to reduce large string of binary to four digits to understand easily.

  • Decimal is a numbering system which having 10 as base. Each digit is denoted by integers from 0 to 9. Also called as Hindu-Arabic Number system /Arabic Number system

  • Hexadecimal to Decimal converter - Multiply each digit with 16 to the power of its place value and then add the product values Eg to Convert 16 hex to decimal, place value of 6 is 160 and place value of 1 is 161 (16)16= (1 × 161) + (6 × 160) . (16)16 = (22)10

  • Decimal to Hexadecimal converter - Divide the number repeatedly by 16 till quotient is zero. Example 255 in hexadecimal , 255/16 = 15 as reminder and 15 as quotient . (255)10 = (FF)16