RE: Decoding unicode decimal codes
Is there any functionality to decode these codes in CRMScript?
I have since my last post added the following:
http.addHeader("Content-Type", "application/rss+xml; charset=UTF-8");
// and then decode the utf8 characters
String text = String(data.GetStream());
XMLNode xml = parseXML(text.utf8Decode());
This fixes some of the other encoding issues but still shows values like '–'.
Note: this also happens when you request the rss feed manually using the browser, so I don't think we are retrieving it wrong