MSB means Most Significant Bit. It is the bit with the highest value, here 128.
LSB means Least Significant Bit. It is the bit with the lowest value, here 1.
For example, in 10000000, only the MSB is active, so the unsigned decimal value is 128.
Endianess describes the order of bytes in memory, not the order of bits inside one byte.
Big endian: the most significant byte is stored first. Example: 0x1234 is stored as 12 34.
Little endian: the least significant byte is stored first. Example: 0x1234 is stored as 34 12.
All values from 0 to 255, shown in the common numeric representations for one byte.
| Unsigned Decimal | Signed Int8 | Hexadecimal | Octal | Binary |
|---|