0b1000111000111
0b1000111000111 is a binary integer literal. The 0b prefix signals that the digits that follow are written in base 2, a convention used by several programming languages to express binary numbers directly in source code.
In decimal, this value is 4551. In hexadecimal, it is 0x11C7. The binary representation consists of 13
Binary literals like this are commonly used in computing for bitwise operations, bit masking, and low‑level
As a numeric constant, 0b1000111000111 is distinct from a string containing the characters '1', '0', and 'B'