0b1001101100010
0b1001101100010 is a binary literal that uses the prefix 0b to indicate base-2 notation. In languages that support binary literals, the digits that follow represent the value in binary form.
Interpreted as an unsigned binary number, 0b1001101100010 equals 4962 in decimal and 0x1362 in hexadecimal. The
In practical usage, such a binary literal can encode a bit pattern for flags, masks, or small
The 0b prefix is widely supported in modern programming languages to express binary values directly. For example,
See also: Binary numeral system, Numeric literals, Hexadecimal.