BITXOR

Engineering Functions:
Function: BITXOR() - Returns a bitwise 'XOR' of two numbers.
(E1): Bitwise XOR of 1 (00001) and 5(00101) is 4 (00100)
(E2): Bitwise XOR of 3 (00011) and 5(00101) is 6 (00110)
(E3): Bitwise XOR of 1 (00001) and 6(00110) is 7 (00111)
(E4): Bitwise XOR of 9 (01001) and 6(00110) is 15 (01111)
(E5): Bitwise XOR of 13 (01101) and 25(11001) is 20 (10100)
(E6): Bitwise XOR of 23 (10111) and 10(01010) is 29 (11101)