I have a string like this one
Servi\u00e7os e Inform\u00e1tica
How can i convert it to the right caracthers (Serviços e Informática) ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Given your comment, this is JSON – so don’t do the work yourself, use one of the existing JSON parsers. I like Json.NET myself, but there’s also
DataContractJsonSerializerif you want. There’s no point in reinventing the wheel here, bit by bit.Note that I mean you should apply an existing library to the whole JSON involved, not just the single string: you should never have to deal with a single string in this form, as the JSON parser should perform all the decoding for you.