0001110100101100
0001110100101100 is a 16-bit binary numeral. In binary notation, each digit represents a power of two, with the leftmost bit being the most significant. The string groups into four 4-bit blocks as 0001 1101 0010 1100, which corresponds to the hexadecimal value 0x1D2C. As an unsigned integer, this value is 7468 in decimal, and as a 16-bit two's complement signed number it remains 7468 since the most significant bit is 0.
When interpreted as a pair of bytes, the 16-bit value splits into 0x1D and 0x2C in big-endian
As a bit pattern, 0001110100101100 can be viewed as a generic 16-bit field. Without a predefined schema
In ASCII terms, if treated as two 8-bit bytes, 00011101 is 0x1D (a non-printable control character) and
See also: binary numeral system, hexadecimal notation, endianness, bitfields.
---