BITXOR int1 int2 (BITXOR int1 int2 int3 ...)
int1
int2
int3
...
Outputs the bitwise exclusive OR of its inputs, which must be integers. If no inputs are given, then BITXOR outputs a value with no bits set.
SHOW BITXOR 5 2 7 SHOW BITXOR 5 1 4 SHOW (BITXOR 6 2 10) 14
SHOW BITXOR 5 2
SHOW BITXOR 5 1
SHOW (BITXOR 6 2 10)