0b1101101100
0b1101101100 is a binary numeral literal commonly used in programming to denote the binary value represented by the digits that follow the 0b prefix. The sequence consists of ten bits: 1,1,0,1,1,0,1,1,0,0. In this form, the leftmost bit is the most significant, contributing 2^9, while the rightmost bit contributes 2^0.
This pattern corresponds to the decimal value 876, and to the hexadecimal value 0x36C. The literal is
In many programming languages, a leading 0b or 0B indicates a binary literal: Python, JavaScript (ES6), Java
Because 0b1101101100 has no inherent meaning beyond being a numeric constant, it is primarily used as an