Ternary Conversion Tool

Base-3 to Binary Converter

Convert base-3 (ternary) integers to binary instantly. Enter a ternary value such as 221 to see its decimal value, positional base-3 calculation, exact binary representation, and conversion steps.

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

What Is Base-3 to Binary Conversion?

Base-3 to binary conversion changes a number written in the ternary numeral system into an equivalent base-2 number. Ternary uses three digits: 0, 1, and 2.

Example: 221₃ Convert to decimal: 2×3² + 2×3¹ + 1×3⁰ = 18 + 6 + 1 = 25 Convert decimal 25 to binary: 25₁₀ = 11001₂ Therefore: 221₃ = 11001₂

How to Convert Base-3 to Binary

1. Validate the digits

A base-3 number may contain only 0, 1, and 2.

2. Identify place values

Starting from the right, positions represent powers of 3.

3. Multiply each digit

Multiply each ternary digit by its corresponding power of 3.

4. Add the values

The sum gives the ordinary numerical value in decimal.

5. Convert that value to binary

Express the exact integer using powers of 2.

6. Read the binary result

The resulting 0-and-1 sequence is the equivalent base-2 number.

Base-3 Place Values

Power Value
3⁰1
3
9
27
3⁴81
3⁵243
3⁶729

Example: Convert Base-3 12 to Binary

Ternary: 12₃ Expand using powers of 3: 1×3¹ + 2×3⁰ = 3 + 2 = 5 Convert 5 to binary: 5₁₀ = 101₂ Therefore: 12₃ = 101₂

Example: Convert Base-3 101 to Binary

101₃ Calculate its value: 1×3² + 0×3¹ + 1×3⁰ = 9 + 0 + 1 = 10 Convert decimal 10 to binary: 10₁₀ = 1010₂ Therefore: 101₃ = 1010₂

Base-3 to Binary Conversion Table

Base-3 Decimal Binary
000
111
2210
10311
114100
125101
206110
217111
2281000
10091001
101101010
2212511001

Why Can’t Base-3 Be Grouped Directly Into Binary Bits?

Direct fixed-size grouping works when one base is an exact power of another. For example, octal digits map neatly to groups of three binary bits because 8 = 2³.

Base 3 is not a power of 2, so no fixed number of binary bits corresponds exactly to one ternary digit. The numeric value must instead be converted.

Base-3 vs Binary

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

Do Leading Zeros Matter?

No. Leading zeros do not change a ternary integer’s numerical value.

These are equivalent: 000221₃ 221₃ Both equal decimal 25 and binary: 11001₂

Common Base-3 to Binary Mistakes

Using digits 3–9

Ternary permits only digits 0, 1, and 2.

Using powers of 2 too early

The ternary input must first be interpreted using powers of 3.

Grouping ternary digits

There is no direct fixed-size ternary-to-binary grouping rule.

Reading 101₃ as binary 101₂

The same digit string represents different values in different bases.

Important: this converter is for non-negative base-3 integers. Ternary fractions require fractional place values such as 3⁻¹, 3⁻², and so on.

Related BinaryCon Tools

Base-3 to Binary Converter FAQs

How do you convert base 3 to binary?
Interpret the ternary digits using powers of 3 to find the exact numerical value, then convert that integer into base-2 binary.
What is base-3 2 in binary?
Ternary 2 equals decimal 2, which is binary 10.
What is base-3 12 in binary?
12₃ = 1×3 + 2 = 5, so the binary result is 101.
What is base-3 101 in binary?
101₃ = 9 + 1 = 10, so it equals binary 1010.
What is base-3 221 in binary?
221₃ = 25₁₀, which equals binary 11001.
What digits are valid in base 3?
Only 0, 1, and 2.
Is base 3 the same as ternary?
Yes. Ternary is the common name for the base-3 numeral system.
Can I convert ternary directly by grouping digits?
No. Base 3 is not a power of 2, so no exact fixed-size grouping maps ternary digits directly to binary bits.
Do leading zeros matter in ternary?
No. Leading zeros do not change the numerical value.
Can this converter handle large ternary integers?
Yes. The main conversion uses integer arithmetic so values are not limited to ordinary 32-bit integer ranges.
Does this converter support ternary fractions?
No. This calculator is specifically for non-negative base-3 integers.
Does BinaryCon require registration?
No. The Base-3 to Binary Converter can be used directly without signup.
Scroll to Top