0b111000010000
0b111000010000 is a binary literal used in various programming languages to express a numeric constant in base 2. The binary digits after the 0b prefix form the 12-bit pattern 111000010000. This pattern corresponds to the decimal value 3600 and to the hexadecimal value 0xE10.
In unsigned interpretation, the value is 3600. If interpreted as a 12-bit signed integer in two's complement,
The bit positions that are set are bits 11, 10, 9 and 4 (counting from 0 as
Usage and context: Binary literals like 0b111000010000 are commonly used to initialize variables, configure bitfields, or
See also: binary numeral system, hexadecimal notation, two's complement, bitmask, 0b prefix.