To manipulate binary numbers, use the buttons described in . FunctionButtonDescriptionExampleResultLeft Shift n<Shifts the current unsigned 32-bit binary value in the display area, the specified number of places to the left. Click <, then select the number of shift places from the popup menu. The number can be shifted up to 15 places left. 111 <1 place1110Right Shift n>Shifts the current unsigned 32-bit binary value in the display area, the specified number of places to the right. Click >, then select the number of shift places from the popup menu. The number can be shifted up to 15 places right.1011 >1 place101 Get a 16-Bit Unsigned Integer&16Truncates the current value in the display area and returns a 16-bit unsigned integer.FFFFF &16FFFFGet a 32-Bit Unsigned Integer&32Truncates the current value in the display area and returns a 32-bit unsigned integer.FFFFFFFFFF &32FFFFFFFFIf you use keyboard shortcuts, you can use the keyboard to specify the number of places to shift, as shown in the following examples: Keyboard EntryDescription<4Shifts the current binary value in the display area 4 places to the left.>4Shifts the current binary value in the display area 4 places to the right.
