Both File.WriteAllLines and File.WriteAllText use UTF-8 unless Encoding specified. In particular, this is UTF-8 without a specification (which is pretty normal).
So: either read the file with an editor that understands UTF-8, or explicitly specify the alternative Encoding that you want to use.
source share