0b1000000011
0b1000000011 is a binary literal used in programming to denote the binary value 1000000011. The 0b prefix signals that the digits that follow are in base-2, a convention adopted by several modern languages for expressing binary numbers directly in source code.
Numeric value and representation
When interpreted as an unsigned integer, 0b1000000011 equals decimal 515. In hexadecimal terms, this value is
The meaning of the bit pattern depends on the fixed width used. In a 10-bit two's complement
Binary literals with a 0b prefix are supported in many languages, including Python, JavaScript, Java, C++, Rust,
Binary numeral system, two's complement, hexadecimal notation, bit mask.