mostsignificantbitfirst
Most significant bit first, often abbreviated as MSB first or big-endian, refers to a convention for ordering the bits within a multi-bit data unit. In this ordering, the bit with the highest value, or "most significant," is transmitted or stored first. This is analogous to how we write numbers in decimal, where the most significant digit appears on the left. For instance, in an 8-bit byte representing the decimal number 170, the binary representation is 10101010. In MSB first order, this would be transmitted or stored as the sequence 1, 0, 1, 0, 1, 0, 1, 0.
The opposite convention is least significant bit first, also known as LSB first or little-endian, where the