010000101011
010000101011 is a 12-bit binary string consisting of the digits 0 and 1. In binary notation, it is often written with a fixed width to emphasize leading zeros. Numerically, it represents the decimal number 1067 and the hexadecimal value 0x42B.
Interpreting the string as a bit pattern shows ones in positions 10, 5, 3, 1, and 0
Depending on grouping, 01000010 1011 may resemble ASCII in part: the first byte 01000010 equals the ASCII
In programming contexts, the literal could appear as 0b010000101011 in languages that support binary literals, and
See also: binary numeral system, bitmask, fixed-width integer, binary literal.