0b101100000
0b101100000 is a binary literal used in several programming languages to denote a number in base 2. The prefix 0b signals that the digits following it are to be interpreted as binary digits rather than decimal, octal, or hexadecimal.
As a value, 0b101100000 equals 352 in decimal. It is 0x160 in hexadecimal. The literal consists of
In contexts where binary literals are supported, 0b101100000 is often used to express explicit bit patterns,
Notes: the exact syntax for binary literals varies by language, but the 0b prefix is a common
See also: binary numeral system, bitwise operations, hexadecimal literals, binary masks.