0b10000011001011
0b10000011001011 is a binary literal used in programming to denote a base-2 integer. The prefix 0b indicates that the digits that follow are interpreted as a binary number rather than decimal, octal, or hexadecimal.
Value and representation. The literal consists of 14 bits: 10000011001011. In decimal, this equals 8,395. In
Bit-pattern notes. The lower eight bits (bits 7 down to 0) are 11001011, which is 0xCB (203
Usage context. Binary literals like 0b10000011001011 appear in programming languages that support base-2 notation, including Python
Related concepts. Binary numeral system, hexadecimal and decimal equivalents, bitwise operations, and the concept of bit