Hi all,
I'm receiving utf postdata via nettalk and probably need to convert somewhere in the process as I don't save the international characters correctly, escpecially the euro-sign (although special characters like
etc. work fine).
I receive the following (as a json string within quotes), which seem to me like correctly encoded:
"\u00e4\u00e0\u00e2\u00e9\u20ac"
The last one displays as "?" in my screens and should be the euro sign (but the first four get "translated" somehow correctly)
Currently I use following code to load the json (gtSt is effectively a stringtheory object) into my queues
gtSt.Setvalue(SELF.rP_web.Getvalue('_postdata_'))
json.start()
json.SetTagCase(jf:CaseAsIs)
json.Load(element, gtSt) ! Load From a StringTheory object
Where (and with what method) should I modify this string.
TIA,
Ton