Base 12 to base 16

Convert Base 12 to Hexadecimal

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

3612 = 2A16

Same value in common bases

BaseValue

Method

How to convert base 12 to base 16

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

value10 = sum(digit x 12position)

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

Base 12 to Hexadecimal table

Base 12 (base 12)Hexadecimal (base 16)
11
22
AA
362A
8464
193FF
714400

Related

Continue converting