Byte Slider

Move the slider to see the decimal, signed 8-bit, hexadecimal, octal and binary representation of one byte.
Byte value formula
0×128 + 0×64 + 0×32 + 0×16 + 0×8 + 0×4 + 0×2 + 0×1 = 0
Unsigned Decimal
0
Signed Int8
0
Hexadecimal
0x00
Octal
0o000
Binary
00000000

Most and Least Significant Bits

MSB means Most Significant Bit. It is the bit with the highest value, here 128.

LSB means Least Significant Bit. It is the bit with the lowest value, here 1.

For example, in 10000000, only the MSB is active, so the unsigned decimal value is 128.

Little Endian and Big Endian

Endianess describes the order of bytes in memory, not the order of bits inside one byte.

Big endian: the most significant byte is stored first. Example: 0x1234 is stored as 12 34.

Little endian: the least significant byte is stored first. Example: 0x1234 is stored as 34 12.

Complete Byte Table

All values from 0 to 255, shown in the common numeric representations for one byte.

Unsigned Decimal Signed Int8 Hexadecimal Octal Binary