0001000010000100
0001000010000100 is a 16-bit binary string that can be interpreted in several contexts. In hexadecimal it is 0x1084, and in decimal it equals 4228. The sequence is often used as an example in discussions of binary-to-hex conversion or as a simple bit-pattern used to illustrate bitwise operations.
When grouped as four-bit nibbles, it reads as 0001 0000 1000 0100. This shows which bits are
Endianness affects how the value is serialized. In big-endian form it appears as the byte sequence 0x10
As text, the sequence does not correspond to standard printable ASCII characters. If treated as two consecutive
Related topics include binary numeral systems, hexadecimal notation, bitmasks, endianness, and binary data encoding.