इसे आजमाएं:
select * from mytable where instr(cell, UNISTR(<UNICODE code of your character>))>0;
उदाहरण:
create table mytable(
cell varchar2(100)
);
insert into mytable values('normal string');
insert into mytable values('fünny string');
commit;
select * from mytable where instr(cell, UNISTR('\00fc'))>0;
आउटपुट:
CELL
-----------------------------------------------------------------------------------------------
fünny string
1 row selected.
संपादित:जैसे @Wernfried Domscheit ने सिफारिश की कि मैंने CHR -> UNISTR को बदल दिया है, - वास्तव में इसे किसी भी वर्ण सेट के साथ काम करना चाहिए