0b1000010100011
0b1000010100011 is a binary numeral written with the 0b prefix, a convention used in several programming languages to denote a binary integer literal. The binary sequence 1000010100011 consists of 13 bits and represents the unsigned integer value 4259 in decimal. In hexadecimal notation, this value is 0x10A3, and in octal notation it is 0o10243.
In contexts where binary literals are supported, 0b1000010100011 is typically parsed as the integer 4259. Such
Aside from its numeric value, this literal does not imply a standard meaning on its own; its
See also: binary numeral system, binary literals, hexadecimal notation, octal notation, bitwise operations.