Base 16 to base 12

Convert Hexadecimal to Base 12

Convert base 16 values to base 12. Integers remain exact even when they exceed JavaScript's ordinary safe-number limit.

2A16 = 3612

Same value in common bases

BaseValue

Method

How to convert base 16 to base 12

Each hexadecimal digit is evaluated by its power of 16. The exact value is then repeatedly divided by 12 to produce the destination digits.

value10 = sum(digit x 16position)

For fractional digits, the converter keeps an exact rational numerator and denominator, then generates up to 32 destination digits. An ellipsis marks a repeating or longer expansion.

Examples

Hexadecimal to Base 12 table

Hexadecimal (base 16)Base 12 (base 12)
11
22
AA
2A36
6484
FF193
400714

Related

Continue converting