Number Base Converter

Binary to Base-3 Converter

Convert binary integers to base-3 (ternary) instantly. Enter a binary value such as 11001 to see its decimal value, ternary representation, repeated-division steps, and exact conversion result.

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

What Is Binary to Base-3 Conversion?

Binary to base-3 conversion changes a number written in base 2 into an equivalent number written in base 3. Base 3 is also called the ternary numeral system and uses the digits 0, 1, and 2.

Example: 11001₂ = 25₁₀ 25₁₀ = 221₃ Therefore: 11001₂ = 221₃

How to Convert Binary to Base-3

1. Read the binary input

Start with the binary integer containing only 0 and 1.

2. Convert binary to decimal

Use powers of 2 to find the numerical value of the binary input.

3. Divide the decimal value by 3

Record the quotient and remainder.

4. Repeat division by 3

Continue dividing each quotient until it becomes zero.

5. Record each remainder

Each remainder will be 0, 1, or 2.

6. Read remainders backward

Reverse the remainder sequence to obtain the base-3 result.

Example: Convert Binary 1010 to Base-3

Convert binary to decimal: 1010₂ = 1×8 + 0×4 + 1×2 + 0×1 = 10₁₀ Now divide 10 repeatedly by 3: 10 ÷ 3 = 3 remainder 1 3 ÷ 3 = 1 remainder 0 1 ÷ 3 = 0 remainder 1 Read the remainders from bottom to top: 101₃ Therefore: 1010₂ = 101₃

Example: Convert Binary 11001 to Base-3

Binary: 11001₂ Decimal value: 16 + 8 + 1 = 25 Divide by 3: 25 ÷ 3 = 8 remainder 1 8 ÷ 3 = 2 remainder 2 2 ÷ 3 = 0 remainder 2 Read upward: 221₃ So: 11001₂ = 221₃

Binary to Base-3 Conversion Table

Binary Decimal Base-3
000
111
1022
11310
100411
101512
110620
111721
1000822
10019100
101010101
1100125221

What Is Base 3?

Base 3 uses three symbols:

0 1 2 Its place values are powers of 3: … 3⁴, 3³, 3², 3¹, 3⁰ … 81, 27, 9, 3, 1

For example, base-3 221 means:

2×3² + 2×3¹ + 1×3⁰ = 18 + 6 + 1 = 25

Binary vs Base-3

Feature Binary Base-3
Base 2 3
Allowed digits 0, 1 0, 1, 2
Place values Powers of 2 Powers of 3
Decimal 10 1010 101
Decimal 25 11001 221

Why Convert Through the Numeric Value?

Binary and ternary bases are not powers of one another, so there is no simple fixed-size bit grouping similar to binary-to-octal or binary-to-hex conversion.

The reliable method is to interpret the binary number’s exact numerical value and then express that same value using powers of 3.

Does Leading Binary Zero Matter?

No. Leading zeros do not change the numerical value.

These are equivalent: 001010₂ 1010₂ Both equal decimal 10 and therefore convert to: 101₃

Common Binary to Base-3 Mistakes

Using digit 2 in binary input

Binary inputs can contain only 0 and 1.

Grouping binary bits

Unlike octal or hexadecimal conversion, fixed-size grouping does not directly convert binary to base 3.

Reading remainders top to bottom

Repeated-division remainders must be read from the final remainder back to the first.

Using digit 3 in the result

A base-3 numeral can contain only digits 0, 1, and 2.

Important: this page converts non-negative integer values. Binary fractions require fractional base-conversion rules and are not included in this calculator.

Related BinaryCon Tools

Binary to Base-3 Converter FAQs

How do you convert binary to base 3?
Convert the binary integer to its numerical decimal value, then repeatedly divide that value by 3 and read the remainders in reverse order.
What is binary 10 in base 3?
Binary 10 equals decimal 2, so its base-3 representation is 2.
What is binary 101 in base 3?
Binary 101 equals decimal 5. Decimal 5 is base-3 12.
What is binary 1010 in base 3?
Binary 1010 equals decimal 10, which is base-3 101.
What is binary 11001 in base 3?
Binary 11001 equals decimal 25, which converts to base-3 221.
What digits are allowed in base 3?
Base 3 uses only the digits 0, 1, and 2.
Is base 3 the same as ternary?
Yes. Ternary is another name for the base-3 numeral system.
Can I group binary bits to convert to base 3?
No simple fixed-size grouping works because 3 is not a power of 2.
Do leading zeros change the result?
No. Leading zeros in a binary integer do not change its numeric value or the resulting base-3 value.
Can this converter handle large binary integers?
Yes. The conversion uses integer arithmetic rather than normal floating-point numbers for the main calculation.
Does this tool support binary fractions?
No. This calculator is specifically for non-negative binary integers.
Does BinaryCon require registration?
No. The Binary to Base-3 Converter can be used directly without signup.
Scroll to Top