Convert Octal to Base 6

Convert Octal (oct) to Base 6 (base 6) instantly and accurately.

Selected Octal (oct) - available characters: 0, 1, 2, 3, 4, 5, 6, 7

Octal (oct)
Base 6 (base 6)

Conversion Formula

Step-by-step example using the value 42 (decimal):

Convert Octal (base 8) → Base 6 (base 6)

Step 1: Expand each digit of 52 (oct) by position:

        5 × 8^1 = 40
        2 × 8^0 =  2
        ────────────
        Sum = 42 (decimal)

Step 2: Divide 42 by 6 repeatedly (read remainders upward):

        42 ÷ 6 = 7  r 0
         7 ÷ 6 = 1  r 1
         1 ÷ 6 = 0  r 1
        Read remainders upward: 110

────────────────────────────
Result:  52 (oct) = 110 (base 6)

About Octal

Octal (base 8) uses digits 0-7. Each position is a power of 8: 8⁰=1, 8¹=8, 8²=64. Because 8 = 2³, each octal digit = exactly 3 binary bits. The Unix/Linux file permission system (chmod 755 = rwxr-xr-x; 7=111, 5=101) uses octal for concise 3-bit rwx triplets. The DEC PDP series encoded 12- and 16-bit words naturally in octal. In C/C++/JS a leading zero denotes octal: 0755 = 493₁₀. Conversion: decimal 42 = 5×8+2 = 52₈.

About Base 6

Senary (base 6) uses digits 0-5. Each position is a power of 6: 6⁰=1, 6¹=6, 6²=36. Six is divisible by 1, 2, 3, and 6, making fractions clean: 1/2 = 0.3, 1/3 = 0.2 (both terminating). Native to the Ndom language of Papua New Guinea. Standard dice produce one uniform senary digit per roll. Donald Knuth noted senary's compact multiplication table. Conversion: decimal 42 = 1×36+1×6+0 = 110₆.

Quick Reference Table

Octal (oct)Base 6 (base 6)
11
22
55
1012
1214
1723
2024
52110
100144
144244
3771103

→ Full Number Base Converter