I'm getting the following error trying to parse a string with some strange characters:
JSONParser parser = JSON.createParser(jsonResponse);
....
parser.getText();
System.JSONException: Unexpected end-of-input: was expecting closing quote for a string value at input location
I believe the value in question contains characters like ä, which are supposedly chinese characters in a database. Are these characters supported in Salesforce? If not, is my only real option throwing a try catch around all my "getText()" calls to just set the value to empty string or something?