To perform bitwise calculations, use the buttons described in . FunctionButtonDescriptionExampleResultBitwise OROrPerforms a bitwise OR operation on the current value in the display area and the next number that you enter, treating both numbers as unsigned long integers.10001000 Or 0001000110011001Bitwise ANDAndPerforms a bitwise AND operation on the current value in the display area and the next number that you enter, treating both numbers as unsigned long integers.10101010 And 0011001100110011Bitwise NOTNotPerforms a bitwise NOT operation on the current value in the display area, treating the number as an unsigned long integer.1357ACE NotFECA8531Bitwise XORXorPerforms a bitwise XOR operation on the current value in the display area and the next number that you enter, treating both numbers as unsigned long integers.1100 Xor 1010110Bitwise XNORXnorPerforms a bitwise XNOR operation on the current value in the display area and the next number that you enter, treating both numbers as unsigned long integers.1100 Xnor 101011111111111111111111111111111001
