0000101000101101
0000101000101101 is a 16-bit binary numeral used in digital data representation. It can be treated as a single unsigned integer or as data encoded in various formats, depending on the context.
As an unsigned integer, the binary sequence equals 2605 in decimal and 0x0A2D in hexadecimal.
When interpreted as two consecutive bytes in big-endian order, the high byte is 00001010 (0x0A) and the
In little-endian memory layout, the byte order would be 2D 0A.
If considered as ASCII data, the two bytes map to 0x0A (line feed) and 0x2D ('-'), which do
In RGB565 color encoding, the 16-bit value can be partitioned into red, green, and blue components: red
The binary string is commonly used in teaching and documentation to illustrate base conversions, endianness, and