Binary numbers
You can change a byte's value by entering a binary number in the
Binary Editor, which opens in another window.
One byte is represented by eight digits. The minimum value is 00000000, the
maximum value is 11111111.
Examples:
The decimal value of 00001111 is:
1 (5th digit) * 8
+ 1 (6th digit) * 4
+ 1 (7th digit) * 2
+ 1 (8th digit) = 15
The decimal equivalent of 11000001 is:
+ 1 (1st digit) * 128
+ 1 (2nd digit) * 64
+ 1 (8th digit) = 193
|