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 is the BITAND operator:
select bitand(49,54)+0 from dual;
You can build up the other operators from it.