Escape unicode chars
I'm trying to percent encode unicode characters (when they come up). I just came up to: é
SELECT UTL_URL.ESCAPE('é') FROM Dual;
returns: %BF
What i need is: %C3%A9
Is there a way to get that in Oracle?
----------------
Alternatively, if the "é" could be turned into an "e", it would probably be just fine.
Edited by: Brian Tkatch on Jul 23, 2012 1:29 PM