How do i use the regexp_like to search for certain characters. Suppose I want to find the below characters
¶ ֠ä§Â¯¬²³â±
If I do this, i am not getting the expected results
select name from TCR_HUB.c_xout_xorg where regexp_like(name, '[¶ ֠ä§Â¯¬²³â±]');
The expected result is the get a list of any name that contain any of this characters.
What am I doing wrong?