Return the bitwise exclusive OR of two integer values.
Performs a bitwise exclusive OR on two integer operands, returning a result where each bit is 1 if the corresponding bits in the operands differ. Useful for toggling specific bits. If either operand is NULL, the result is NULL.