From the manual:
To search for employees with the pattern 'A_B' in their name:
SELECT ename
FROM emp
WHERE ename LIKE '%A\_B%' ESCAPE '\';

So you should be able to use another escape like:
SELECT ename
FROM emp
WHERE ename LIKE '%A#_B%' ESCAPE '#';