------------------------------------------------------------------------------
MC logo
Binary To Decimal Conversions
[^] Conversion Examples   [^^][^^] Binary/Boolean Main Index
------------------------------------------------------------------------------
[Binary To Decimal Conversions] [Left-Right Decimal to Binary] [Right-Left Decimal to Binary] [Binary To Hex Conversions] [Hex To Decimal Conversions] [Right-Left Hex to Binary]
Here are some examples of converting binary directly into decimal. We simply add up the place values of each 1 digit in the binary number.
  • 1001012 = 3710:
    Exponents 252423222120
    Place Values 32168421
    Bits 100101
    Value 32         + 4     + 1 = 37
  • 100011102 = 14210:
    Exponents 2726252423222120
    Place Values 1286432168421
    Bits 10001110
    Value 128             + 8 + 4 + 2     = 142
  • 1111010002 = 48810:
    Exponents 282726252423222120
    Place Values 2561286432168421
    Bits 111101000
    Value 256 + 128 + 64 + 32     + 8             = 488
  • 101101012 = 18110:
    Exponents 2726252423222120
    Place Values 1286432168421
    Bits 10110101
    Value 128     + 32 + 16     + 4     + 1 = 181