10000100
10000100 is an eight-bit binary numeral. In binary notation, the pattern has ones at the most significant bit (bit 7) and at bit 2, with zeros elsewhere. In unsigned decimal, the value is 132. In hexadecimal, it is 0x84, and in octal it is 0o204. The pattern can be interpreted as a simple bitmask, where the high bit and the bit corresponding to 4 are set.
In two's complement eight-bit representation used for signed integers, 10000100 represents -124. This is because the
In character encoding, 0x84 falls outside the standard ASCII range. In common eight-bit encodings such as ISO/IEC
Usage and context: as a bitmask or flag in low-level programming and digital communications, 10000100 can represent
See also: Binary numeral system; Hexadecimal; Octal; Two's complement; Bit mask.