When I am writing the degree symbol to a text document using the streamwriter it shows up with a Mysterious  in front of it. I know this has something to do with its encoding but I am new to encoding in general and Have no idea how to work it. here is my code
Any ideas? Thanks
Code:
StreamWriter sw2;
sw2 = File.CreateText("DB\\ioSys.FIL");
string DegreeC = "°C";
IO_file = "t_01_0" + CBA41G1Bus.Text + "_" + StartAddress1 + "_" + temp + "\t" + temp + ".000000\t0\t"+ DegreeC";
sw2.WriteLine(IO_file);
Comment