The caret (^) operator is a bitwise exclusive-or operator (it should not be confused with Math.pow: it is not an exponential operator)

If the above picture should become unavailable, here is a text version:
A B A^B
true 1 true 1 false 0
true 1 false 0 true 1
false 0 true 1 true 1
false 0 false 0 false 0
Examples, with num1=3, and num2=6, perform an exclusive-OR on each bit position:
num1^num2 is 5:
num1: 0 0 1 1
num2: 0 1 1 0
------------------
num1^num2: 0 1 0 1
num1 num2 num1^num2
---- ---- ---------
0011 0110 0101
