Base 7 to base 3

Convert Base 7 to Base 3

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

607 = 11203

Same value in common bases

BaseValue

Method

How to convert base 7 to base 3

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

value10 = sum(digit x 7position)

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 7 to Base 3 table

Base 7 (base 7)Base 3 (base 3)
11
22
13101
601120
20210201
513100110
26621101221

Related

Continue converting