My problem is that I want to parse a file and it had to detect a special char ('Â') to do some stuff. I didn't manage to detect it but it worked with normal chars like 'a'. So I tried to understand where the problem was coming from, and created a .txt file whose only char is 'Â'.
string a = File.ReadAllText("C:/example/example/test.txt");
Console.WriteLine(a.Length);`
Console prints 0. It's like the char doesn't exist. So I tried with different encodings (File.ReadAllText with utf8, utf16, unicode and so) and had the same result.
I really don't know what to do, thanks in advance!