In SQL Server I have been using the ^ symbol, however that doesn\'t seem to work in Oracle.
^
How do I do a bitwise exc
There's no easy way.
You may cast string HEX values into RAW values and use UTL_RAW:
HEX
RAW
UTL_RAW
SELECT UTL_RAW.bit_xor(HEXTORAW(TO_CHAR(1, 'FMX')), HEXTORAW(TO_CHAR(2, 'FMX'))) FROM dual --- 03