0b1000111
0b1000111 is a binary literal, a notation used in some programming languages to express a number in base-2. Its value in decimal is 71; in hexadecimal, it is 0x47; in octal, it is 0o107.
The bit pattern consists of seven bits: from most significant to least: 1 0 0 0 1
In ASCII, decimal 71 corresponds to the uppercase letter G. In 7-bit ASCII, 71 lies within the
In programming practice, 0b1000111 can be used as a constant in expressions, in bitwise operations, or as
Other representations of the same value include hexadecimal 0x47 and octal 0o107. The binary form is often
---