0b1100111101101
0b1100111101101 is a binary numeral literal, where the prefix 0b denotes base two and the following digits form a 13-bit binary value: 1100111101101. In decimal this value equals 6637, and in hexadecimal it is 0x19ED. The representation reflects the common convention of using 0b to indicate binary literals in many programming languages.
The value occupies 13 bits, with the most significant bit representing 2^12 (4096) and the least significant
In computing, such binary literals are used to express constant bit patterns directly. They can serve as
See also: binary numeral system, hexadecimal numeral system, decimal numeral system, bitwise operations, binary literals.