0b110101001100
0b110101001100 is a binary numeric literal. The prefix 0b is used in several programming languages to indicate that the digits following it are written in base 2.
The bit string 110101001100 consists of 12 bits. As an unsigned integer, its decimal value is 3404.
If interpreted as a signed value in a fixed 12-bit two's complement representation, the most significant bit
In computing, binary literals like this are used for bitwise operations, masks, and low-level data representation.