Number Base Converter

Binary to Base-6 Converter

Convert binary integers to base-6 instantly. Enter a binary value such as 11001 to calculate its decimal value, repeated division by 6, exact senary representation, and complete conversion steps.

✓ Binary Input ✓ Base-6 Output ✓ Decimal Verification ✓ Division Steps ✓ Exact Integer Math
2→6
Binary → Base-6
● Ready
Enter a non-negative binary integer using only 0 and 1. Spaces are ignored.
Try:
✓ Base-6 Result
Base-6 / senary representation
Decimal Value 0
Binary Bits 0
Base-6 Digits 0
Conversion Breakdown

What Is Binary to Base-6 Conversion?

Binary to base-6 conversion changes a number written in base 2 into an equivalent value written in base 6. Base 6 is also called the senary numeral system and uses the digits 0 through 5.

Example: 11001₂ = 25₁₀ 25₁₀ = 41₆ Therefore: 11001₂ = 41₆

How to Convert Binary to Base-6

1. Validate the binary number

Make sure the source value contains only digits 0 and 1.

2. Find its numerical value

Interpret the binary digits using powers of 2.

3. Divide by 6

Divide the resulting integer by 6 and record the remainder.

4. Repeat

Keep dividing each quotient by 6 until the quotient becomes zero.

5. Record all remainders

Each remainder will be one of the valid base-6 digits from 0 to 5.

6. Reverse the remainders

Read the remainders from last to first to obtain the base-6 result.

Example: Convert Binary 1100 to Base-6

Binary: 1100₂ Convert to decimal: 1×8 + 1×4 + 0×2 + 0×1 = 12 Divide by 6: 12 ÷ 6 = 2 remainder 0 2 ÷ 6 = 0 remainder 2 Read the remainders from bottom to top: 20₆ Therefore: 1100₂ = 20₆

Example: Convert Binary 11001 to Base-6

Binary: 11001₂ Decimal value: 16 + 8 + 1 = 25 Repeated division by 6: 25 ÷ 6 = 4 remainder 1 4 ÷ 6 = 0 remainder 4 Reverse the remainders: 41₆ Therefore: 11001₂ = 41₆

Binary to Base-6 Conversion Table

Binary Decimal Base-6
000
111
1022
1133
10044
10155
110610
111711
1000812
1001913
10101014
10111115
11001220
11011321
11101422
11111523
110012541

What Is Base 6?

Base 6 uses six possible digits:

0 1 2 3 4 5 Its place values are powers of 6: … 6⁴, 6³, 6², 6¹, 6⁰ … 1296, 216, 36, 6, 1

For example, 41₆ represents:

4×6 + 1 = 24 + 1 = 25

Why Can’t Binary Be Grouped Directly Into Base-6 Digits?

Fixed binary grouping works for bases that are exact powers of 2. For example, base 4 works with two-bit groups because 4 = 2².

Base 6 is not a power of 2, so there is no exact fixed number of binary bits that maps directly to one base-6 digit. The numerical value must be converted.

Binary vs Base-6

Feature Binary Base-6
Base 2 6
Allowed digits 0, 1 0, 1, 2, 3, 4, 5
Place values Powers of 2 Powers of 6
Decimal 12 1100 20
Decimal 25 11001 41

Do Leading Binary Zeros Matter?

No. Leading zeros have no effect on the numerical value of a binary integer.

These are equivalent: 0011001₂ 11001₂ Both equal decimal 25 and therefore convert to: 41₆

Common Binary to Base-6 Mistakes

Using invalid binary digits

Binary input can contain only 0 and 1.

Trying fixed bit groups

Base 6 is not a power of 2, so direct bit grouping does not work.

Reading remainders in the wrong direction

Repeated-division remainders must be read from last to first.

Using digit 6

A valid base-6 result can contain only digits 0 through 5.

Important: this calculator converts non-negative binary integers. Binary fractions require fractional base-conversion rules and are outside this tool.

Related BinaryCon Tools

Binary to Base-6 Converter FAQs

How do you convert binary to base 6?
Convert the binary integer to its exact numerical value, divide that value repeatedly by 6, and read the remainders from last to first.
What is binary 101 in base 6?
Binary 101 equals decimal 5, so its base-6 representation is 5.
What is binary 110 in base 6?
Binary 110 equals decimal 6, which is 10₆.
What is binary 1100 in base 6?
Binary 1100 equals decimal 12, which is base-6 20.
What is binary 11001 in base 6?
Binary 11001 equals decimal 25, which converts to base-6 41.
What digits are valid in base 6?
Base 6 uses digits 0, 1, 2, 3, 4, and 5.
Is base 6 called senary?
Yes. Senary is another name for the base-6 numeral system.
Can binary be grouped directly to convert to base 6?
No. Base 6 is not an exact power of 2, so there is no fixed-size binary grouping rule.
Do leading binary zeros affect the result?
No. Leading zeros do not change the numerical value.
Can this converter handle large binary integers?
Yes. The main calculation uses exact integer arithmetic instead of ordinary floating-point conversion.
Does this converter support binary fractions?
No. This page is designed specifically for non-negative integer values.
Does BinaryCon require registration?
No. The Binary to Base-6 Converter can be used directly without signup.
Scroll to Top