Number Base Converter

Binary to Base-12 Converter

Convert binary integers to base-12 (duodecimal) instantly. Enter a binary number such as 11001 to get its decimal value, repeated division by 12, exact base-12 result, and conversion steps.

✓ Binary Input ✓ Base-12 Output ✓ A = 10, B = 11 ✓ Decimal Verification ✓ Conversion Steps
2→12
Binary → Base-12
● Ready
Enter a non-negative binary integer using only digits 0 and 1.
Try:
✓ Base-12 Result
Base-12 / duodecimal representation
Decimal Value 0
Binary Bits 0
Base-12 Digits 0
Conversion Breakdown

What Is Binary to Base-12 Conversion?

Binary to base-12 conversion changes a number written in base 2 into the equivalent value in base 12. Base 12 is also called the duodecimal numeral system.

Binary uses only 0 and 1, while base 12 uses 0–9 plus two extra digits:

A = decimal 10 B = decimal 11

How to Convert Binary to Base-12

1. Validate Binary Input

Make sure the number contains only binary digits 0 and 1.

2. Find the Decimal Value

Evaluate the binary number using powers of 2.

3. Divide by 12

Divide the decimal value by 12 and record the remainder.

4. Repeat

Continue dividing each quotient by 12 until the quotient is zero.

5. Convert Remainders

Remainder 10 becomes A and remainder 11 becomes B.

6. Reverse the Digits

Read the remainder sequence from last to first.

Base-12 Digit Table

Decimal Base-12 Digit
00
11
22
33
44
55
66
77
88
99
10A
11B

Example: Convert Binary 1010 to Base-12

Binary: 1010₂ Decimal value: 8 + 2 = 10 Decimal 10 is represented by A in base 12: 1010₂ = A₁₂

Example: Convert Binary 1011 to Base-12

Binary: 1011₂ Decimal value: 8 + 2 + 1 = 11 Decimal 11 is represented by B in base 12: 1011₂ = B₁₂

Example: Convert Binary 11001 to Base-12

Binary: 11001₂ = 25₁₀ Divide 25 by 12: 25 ÷ 12 = 2 remainder 1 2 ÷ 12 = 0 remainder 2 Read the remainders backward: 21₁₂ Therefore: 11001₂ = 21₁₂

Binary to Base-12 Conversion Table

Binary Decimal Base-12
000
111
1022
1133
10044
10155
11066
11177
100088
100199
101010A
101111B
11001210
11011311
11101412
11111513
110002420
110012521

What Is Base 12?

Base 12 uses twelve digit values. With the notation used by this converter, the digit set is:

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B

The place values are powers of 12:

12⁰ = 1 12¹ = 12 12² = 144 12³ = 1728 12⁴ = 20736

Binary vs Base-12

Feature Binary Base-12
Base 2 12
Digits 0, 1 0–9, A, B
Place Values Powers of 2 Powers of 12
Decimal 10 1010 A
Decimal 11 1011 B
Decimal 25 11001 21

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

Direct bit grouping works when the destination base is a power of 2. For example, binary can be grouped directly for base 4, base 8, or base 16.

Base 12 is not a power of 2, so there is no fixed group of binary bits that corresponds exactly to one base-12 digit.

Common Binary to Base-12 Mistakes

Using Invalid Binary Digits

The input may contain only 0 and 1.

Forgetting A and B

Base-12 values 10 and 11 are represented as A and B in this calculator.

Reading Remainders Forward

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

Trying Fixed Binary Groups

Base 12 is not a power of 2, so direct binary grouping is not valid.

Important: this calculator uses A = 10 and B = 11 for duodecimal digits. It converts non-negative integer values only.

Related BinaryCon Tools

Binary to Base-12 Converter FAQs

How do you convert binary to base 12?
Convert the binary integer to its decimal value, repeatedly divide that value by 12, then read the remainders from last to first.
What is binary 1010 in base 12?
Binary 1010 equals decimal 10, represented as A in this base-12 notation.
What is binary 1011 in base 12?
Binary 1011 equals decimal 11, represented as B in base 12.
What is binary 1100 in base 12?
Binary 1100 equals decimal 12, which is 10₁₂.
What is binary 11001 in base 12?
Binary 11001 equals decimal 25, which is 21₁₂.
What does A mean in base 12?
In this calculator, A represents decimal value 10.
What does B mean in base 12?
B represents decimal value 11.
Is base 12 called duodecimal?
Yes. Duodecimal is the common name for the base-12 numeral system.
Can binary be grouped directly for base 12?
No. Since 12 is not a power of 2, there is no exact fixed-size binary grouping for base-12 conversion.
Do leading binary zeros affect the result?
No. Leading zeros do not change the numerical value.
Scroll to Top