I'm using Oracle Apex and the whole application is set to utf-8, therefore i have no problems with "ä,ö,ü". But I changed the appearance of some items using javascript and now f.e. the umlaut "ü" looks like this ü.
How do i change the charset for these items back to utf-8 or find a way to show the "umlaute" correctly.
Thanks alot
// Ü, ü \u00dc, \u00fc
// Ä, ä \u00c4, \u00e4
// Ö, ö \u00d6, \u00f6
// ß \u00df
I would say – do not waste time, use Unicode syntax which will always resolve to the characters you want to show in your strings.
For example:
var a = '\u00d6\u00df'; // will be displayed as Öß
Jackless,
Please go to item, Security & set Escape special characters to No
I think solve your problem.