0b1111001110000
0b1111001110000 is a binary integer literal using the common base-2 prefix 0b found in many programming languages. The digits of the value are 1111001110000, which constitutes a 13-bit binary number.
In decimal, this binary value equals 7792. In hexadecimal, it corresponds to 0x1E70. The 13-bit length means
The bit pattern can be read as four consecutive ones, two zeros, three ones, and four zeros:
Context and usage: binary literals like 0b1111001110000 are used to specify exact bit patterns, often for low-level
See also: binary numeral system, hexadecimal notation, bitwise operations.