0b111101011111
0b111101011111 is a binary literal, a numeric constant written with a base-2 prefix (0b) used in several programming languages to indicate that the following digits should be interpreted as binary. The sequence 111101011111 consists of twelve bits and can be read as a single 12-bit value.
In decimal form, this binary pattern equals 3935. In hexadecimal notation, it is 0xF5F (the bits group
The binary value can be interpreted in different ways depending on the signing and width assumptions. As
Uses and context: binary literals like this are common for expressing bit patterns, masks, or small constants
See also: binary numeral system, hexadecimal notation, binary literals, bit mask, two’s complement.