0b1100110000101
0b1100110000101 is a binary literal used in several programming languages to denote a base-2 integer. The 0b prefix signals that the digits following it are to be interpreted as binary rather than decimal or hexadecimal. The string 1100110000101 comprises 13 bits, making this a 13-bit binary value.
As an unsigned integer, this value equals 6533 in decimal and 0x1985 in hexadecimal. The bit pattern
If interpreted as a 13-bit signed value in two's complement form, the most significant bit is 1,
Common uses for such a binary literal include configuring bitmasks, flags, or bitfield definitions in low-level