0b1010011001100
0b1010011001100 is a binary numeral literal that uses the 0b prefix to indicate base 2. In many programming languages, this notation denotes a binary constant whose bits are read from most significant to least significant.
As a binary number, its value is 5324 in decimal and 0x14CC in hexadecimal. The binary string
In binary form, the number can be visualized as 1 0100 1100 1100, which can be padded
Uses and context: such a literal can encode a specific bit pattern suitable for bitmasks, flag sets,
Language support: the 0b prefix is supported by several modern languages, including Python (since 3.x), JavaScript
See also: binary numeral system, hexadecimal numeral system, bit mask, bitfield, numeric literal.