Hi,
I need to write a plsql function that will take a varchar2 column containing Polish national characters to escaped UTF-8, which will be then used in javascript,
So I need to convert:
zażółć gęślą jaźń
to:
za\u017c\u00f3\u0142\u0107 g\u0119\u015bl\u0105 ja\u017a\u0144
To be exact, my goal is to build a json encoder directly in oracle. This function will be important part of it.
Thanks for all answers :)