0b1001110000101
0b1001110000101 is a binary literal, a numeric notation used in various programming languages to express a value in base 2. The 0b prefix signals that the digits following it should be interpreted as binary rather than decimal.
The value of this binary string is 4997 in decimal, and 0x1385 in hexadecimal. The representation uses
In programming, 0b1001110000101 may be used as a literal value or as a bit mask for flag-based
Language support for binary literals varies. The 0b prefix appears in languages such as Python, JavaScript