0b0010110011000111
0b0010110011000111 is a binary literal that uses the 0b prefix to denote base-2 notation. The bit string represented is 0010110011000111, consisting of 16 bits.
In common numeric representations, this value is 0x2CC7 in hexadecimal and 11463 in decimal. As an unsigned
The 16-bit pattern can be viewed as two bytes: the high byte 0x2C (binary 0010 1100) and
Context and usage notes: the 0b prefix is common in several programming languages such as Python, Rust,
See also: binary literals, hexadecimal notation, two’s complement, bitwise operations.