RU

HEX to DEC Converter Online

Converting hexadecimal numbers to decimal is useful for debugging, analyzing memory dumps, and working with CSS color codes.

number-base
HEX → DEC
Was this tool helpful?
10

Decimal (DEC)

Convert from/to decimal number system

01

Binary (BIN)

Convert from/to binary number system

0x

Hexadecimal (HEX)

Convert from/to hexadecimal number system

0o

Octal (OCT)

Convert from/to octal number system

Related Tools

Frequently Asked Questions

Each digit of the HEX number is multiplied by the corresponding power of 16. For example, FF = 15*16 + 15 = 255. Letters A-F correspond to numbers 10-15.
In hexadecimal, A=10, B=11, C=12, D=13, E=14, F=15. Case does not matter: FF and ff are the same number.
CSS colors are written as #RRGGBB, where each pair is a HEX value from 00 to FF (0-255 in DEC). For example, #FF0000 = red (R=255, G=0, B=0).