Convert Binary to Base 6
Convert Binary (bin) to Base 6 (base 6) instantly and accurately.
Selected Binary (bin) - available characters: 0, 1
Conversion Formula
Step-by-step example using the value 42 (decimal):
Convert Binary (base 2) → Base 6 (base 6)
Step 1: Expand each digit of 101010 (bin) by position:
1 × 2^5 = 32
0 × 2^4 = 0
1 × 2^3 = 8
0 × 2^2 = 0
1 × 2^1 = 2
0 × 2^0 = 0
────────────
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: 101010 (bin) = 110 (base 6)
About Binary
Binary (base 2) is the foundational numeral system of all digital electronics, using only 0 and 1. Each position represents a power of 2: 2⁰=1, 2¹=2, 2²=4, 2³=8. Leibniz formalised it in 1679; Shannon applied Boolean logic to circuits in 1948. 8 bits = 1 byte (256 values) - the fundamental unit in every CPU from the 8080 to ARM Cortex-X. Every integer, float, character, pixel, and instruction in any digital device is ultimately binary. Conversion: decimal 42 = 32+8+2 = 2⁵+2³+2¹ = 101010₂.
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
| Binary (bin) | Base 6 (base 6) |
|---|---|
| 1 | 1 |
| 10 | 2 |
| 101 | 5 |
| 1000 | 12 |
| 1010 | 14 |
| 1111 | 23 |
| 10000 | 24 |
| 101010 | 110 |
| 1000000 | 144 |
| 1100100 | 244 |
| 11111111 | 1103 |