0b100100101
0b100100101 is a binary literal commonly used in programming and digital electronics. The prefix 0b (or 0B) indicates that the digits following it are base-2. The bit pattern comprises nine bits: 1,0,0,1,0,0,1,0,1.
As an unsigned integer, this pattern represents the decimal value 293 and the hexadecimal value 0x125.
When interpreted as a fixed-width signed value using nine-bit two's complement, the same bit pattern can correspond
Common uses include specifying constants, bit masks, or flag sets in source code, or representing small binary
Languages that support the 0b prefix for binary literals include Python, Java, JavaScript, C++, Rust, and others.