Binary to Decimal - Two's Complement Integers
Example of conversion to decimal of a signed binary number in two's complement representation
Let's convert to decimal the following signed binary number: 10110010
10110010 = -1×27 + 0×26 + 1×25 + 1×24 + 0×23 + 0×22 + 1×21 + 0×20 = -128 + 32 + 16 + 2 = -78.