Convert Binary to Base 5
Convert Binary (bin) to Base 5 (base 5) 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 5 (base 5)
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 5 repeatedly (read remainders upward):
42 ÷ 5 = 8 r 2
8 ÷ 5 = 1 r 3
1 ÷ 5 = 0 r 1
Read remainders upward: 132
────────────────────────────
Result: 101010 (bin) = 132 (base 5)
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 5
Quinary (base 5) uses digits 0-4. Each position is a power of 5: 5⁰=1, 5¹=5, 5²=25. One of the most historically widespread alternative bases, reflecting one-hand finger counting - Proto-Indo-European *penkwe = 'five/fist'. Tally marks group strokes in fives. Babylonian sexagesimal (base 60) used a 5×12 sub-structure. Fibonacci numbers mod 5 have Pisano period 20. Conversion: decimal 42 = 1×25+3×5+2 = 132₅.
Quick Reference Table
| Binary (bin) | Base 5 (base 5) |
|---|---|
| 1 | 1 |
| 10 | 2 |
| 101 | 10 |
| 1000 | 13 |
| 1010 | 20 |
| 1111 | 30 |
| 10000 | 31 |
| 101010 | 132 |
| 1000000 | 224 |
| 1100100 | 400 |
| 11111111 | 2010 |