Base 10 to base 32

Convert Decimal to Base 32

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

4210 = 1A32

Same value in common bases

BaseValue

Method

How to convert base 10 to base 32

Each decimal digit is evaluated by its power of 10. The exact value is then repeatedly divided by 32 to produce the destination digits.

value10 = sum(digit x 10position)

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

Decimal to Base 32 table

Decimal (base 10)Base 32 (base 32)
11
22
10A
421A
10034
2557V
1024100

Related

Continue converting