Huy guys!
I’m having some trouble with accents when I directly make a query on facebook website.
When content have accents, the website returns something like this:
“__html”:”M\u00fasico/Banda”
But testing with JsonParserOnline (http://json.parser.online.fr/) they divide 2 columns, and the last one is “JSEval”, where they can normalize the Json, like this:
“__html”:”Músico/Banda”
How can i normalize this since i already have the string?
I attached a sample with my query to be more specific.
Thanks in advance!
"__html":"M\u00fasico/Banda"is a correct JSON encoding for the string.\u00fais specifying a UNICODE code point. Any JSON parser in c# will handle this.