1000100000101
1000100000101 is a binary numeral consisting of 13 bits. In binary notation it represents the unsigned decimal value 4357, and in hexadecimal it is 0x1105. The bit pattern has ones at the positions corresponding to 2^12, 2^8, 2^2, and 2^0, giving 4096 + 256 + 4 + 1 = 4357. The number is odd, since it ends in 1, and the most significant bit is 1.
If interpreted as a 13-bit two's complement signed integer, the most significant bit indicates a negative value,
In contexts such as digital logic or data encoding, this pattern can function as a small bitfield
---