Base 10 to base 3

Convert Decimal to Base 3

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

4210 = 11203

Same value in common bases

BaseValue

Method

How to convert base 10 to base 3

Each decimal digit is evaluated by its power of 10. The exact value is then repeatedly divided by 3 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 3 table

Decimal (base 10)Base 3 (base 3)
11
22
10101
421120
10010201
255100110
10241101221

Related

Continue converting