Base 32 to base 10

Convert Base 32 to Decimal

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

1A32 = 4210

Same value in common bases

BaseValue

Method

How to convert base 32 to base 10

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

value10 = sum(digit x 32position)

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 32 to Decimal table

Base 32 (base 32)Decimal (base 10)
11
22
A10
1A42
34100
7V255
1001024

Related

Continue converting