I have download my data on facebook to work on and do some statistics with it. unfortunately, some characters doesn't display correctly like 'é' who become 'é'. https://i.stack.imgur.com/7Sh7P.jpg
When i look on the Json side, i have this : https://i.stack.imgur.com/ylGBw.jpg
my code in C# is pretty simple
private static ListMessages ReadJSON(string path)
{
using (StreamReader r = new StreamReader(path, Encoding.GetEncoding("utf-8")))
{
string json = r.ReadToEnd();
ListMessages messages = JsonConvert.DeserializeObject<ListMessages>(json);
return messages;
}
}
I feel like i'm missing something simple but i can't figure what so i hope someone can help or guide me on this subject.