The binary number 101011 converts to 43 in decimal (ary). This means when translating the binary value into the base-ary system, it results in 43.
To convert 101011 from binary (base-2) to an arbitrary base (ary), first, interpret the binary as a decimal number, then change that decimal into the target base. Since 101011 in binary is 43 in decimal, converting 43 into ary gives the final value.
Conversion Result
101011 b equals 43 in ary.
Conversion Tool
Result in ary:
Conversion Formula
To convert from binary to any base (ary), first, convert the binary to decimal by summing each digit times 2 raised to its position. Then, divide the decimal by the new base repeatedly, recording remainders, to build the number in ary.
For example, binary 101011: (1×2^5) + (0×2^4) + (1×2^3) + (0×2^2) + (1×2^1) + (1×2^0) = 32 + 0 + 8 + 0 + 2 + 1 = 43. Converting 43 to ary if base is 10, remains 43.
Conversion Example
- Binary 1101 to decimal:
- 1×2^3 + 1×2^2 + 0×2^1 + 1×2^0 = 8 + 4 + 0 + 1 = 13
- Decimal 255 to binary:
- Divide 255 by 2: quotient 127, remainder 1
- Divide 127 by 2: quotient 63, remainder 1
- Divide 63 by 2: quotient 31, remainder 1
- Divide 31 by 2: quotient 15, remainder 1
- Divide 15 by 2: quotient 7, remainder 1
- Divide 7 by 2: quotient 3, remainder 1
- Divide 3 by 2: quotient 1, remainder 1
- Divide 1 by 2: quotient 0, remainder 1
- Reading remainders from last to first gives 11111111
- Binary 1001 to decimal:
- 1×2^3 + 0×2^2 + 0×2^1 + 1×2^0 = 8 + 0 + 0 + 1 = 9
- Decimal 42 to binary:
- 42 ÷ 2 = 21, remainder 0
- 21 ÷ 2 = 10, remainder 1
- 10 ÷ 2 = 5, remainder 0
- 5 ÷ 2 = 2, remainder 1
- 2 ÷ 2 = 1, remainder 0
- 1 ÷ 2 = 0, remainder 1
- Number is 101010 in binary
Conversion Chart
Decimal | ary |
---|---|
100986.0 | ??? |
100987.0 | ??? |
100988.0 | ??? |
100989.0 | ??? |
100990.0 | ??? |
100991.0 | ??? |
100992.0 | ??? |
100993.0 | ??? |
100994.0 | ??? |
100995.0 | ??? |
100996.0 | ??? |
100997.0 | ??? |
100998.0 | ??? |
100999.0 | ??? |
101000.0 | ??? |
101001.0 | ??? |
101002.0 | ??? |
101003.0 | ??? |
101004.0 | ??? |
101005.0 | ??? |
101006.0 | ??? |
101007.0 | ??? |
101008.0 | ??? |
101009.0 | ??? |
101010.0 | ??? |
101011.0 | ??? |
101012.0 | ??? |
101013.0 | ??? |
101014.0 | ??? |
101015.0 | ??? |
101016.0 | ??? |
101017.0 | ??? |
101018.0 | ??? |
101019.0 | ??? |
101020.0 | ??? |
Use this chart to compare decimal values with their corresponding bases for quick reference. To read, locate the decimal number, then find its ary value which is calculated based on the conversion method described.
Related Conversion Questions
- How to convert 101011 binary to hexadecimal?
- What is the decimal equivalent of 101011 in base 8?
- How do I convert binary 101011 to hexadecimal?
- What is 101011 in base 5?
- Can I convert 101011 binary directly into base 16?
- What is the value of 101011 in ternary (base 3)?
- How to convert binary 101011 into Roman numerals?
Conversion Definitions
b
The term “b” refers to binary numeral system, which uses only two digits, 0 and 1, to represent numbers. It is fundamental in computing, where each digit signifies a power of 2, allowing for efficient digital data processing and storage.
ary
“Ary” denotes an arbitrary positional numeral system with a specific base, where each digit’s value depends on its position, and the base determines the number of unique digits used. Converting numbers into ary involves changing from decimal or binary to this base.
Conversion FAQs
How can I convert 101011 b to decimal manually?
To convert binary 101011 to decimal manually, multiply each digit by 2 raised to its position from right to left, then sum these products. For example, (1×2^5)+(0×2^4)+(1×2^3)+(0×2^2)+(1×2^1)+(1×2^0)=32+0+8+0+2+1=43.
Is the conversion from binary to ary always straightforward?
No, the process depends on the target base. Converting from binary to decimal is simple, but changing from decimal to another base involves repeated division and remainders. The complexity increases as the target base varies, especially if it’s non-standard.
Why does binary 101011 equal 43 in decimal?
Because each position in binary represents a power of 2, summing these values for 101011 gives 43 in decimal. The calculation considers 1×2^5 + 0×2^4 + 1×2^3 + 0×2^2 + 1×2^1 + 1×2^0, which totals 43.
Can I convert 101011 directly to base 8?
Yes, by grouping binary digits into triplets from right to left, then converting each triplet into its octal equivalent. For 101011, group as 10 101 1 (pad left with zeros if needed), then convert these groups into octal digits.
What are the common pitfalls when converting binary to other bases?
Common pitfalls include misaligning digits, incorrect grouping for bases like 8 or 16, and forgetting to convert back to decimal before changing to the new base. Also, confusion may arise with leading zeros or incomplete groups.
Last Updated : 19 June, 2025


Sandeep Bhandari holds a Bachelor of Engineering in Computers from Thapar University (2006). He has 20 years of experience in the technology field. He has a keen interest in various technical fields, including database systems, computer networks, and programming. You can read more about him on his bio page.