The logical exclusive OR operator (\) takes the logical exclusive OR of two arguments. For example: A = ^B1010 B = ^B1100 .LONG A\B ; Yields 0110 (binary)