Convert Binary to Base 9
Convert Binary (bin) to Base 9 (base 9) 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 9 (base 9)
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 9 repeatedly (read remainders upward):
42 ÷ 9 = 4 r 6
4 ÷ 9 = 0 r 4
Read remainders upward: 46
────────────────────────────
Result: 101010 (bin) = 46 (base 9)
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 9
Nonary (base 9) uses digits 0-8. Each position is a power of 9: 9⁰=1, 9¹=9, 9²=81. Because 9 = 3², each nonary digit maps to exactly 2 ternary digits (0=00 … 8=22). The finite field GF(9) = GF(3²) is used in certain error-correcting codes and algebraic geometry. The 3×3 magic square sums to 15 in every row/column/diagonal and is deeply tied to mod-9 arithmetic. Conversion: decimal 42 = 4×9+6 = 46₉.
Quick Reference Table
| Binary (bin) | Base 9 (base 9) |
|---|---|
| 1 | 1 |
| 10 | 2 |
| 101 | 5 |
| 1000 | 8 |
| 1010 | 11 |
| 1111 | 16 |
| 10000 | 17 |
| 101010 | 46 |
| 1000000 | 71 |
| 1100100 | 121 |
| 11111111 | 313 |