I retrieve a stream. Everything works fine but the encoding of Umlaute (ä,ö,ü,ß).
What is
NäüßÖ´sas so viele Umlaute
becomes
NäüÃôsas so viele Umlaute
I tried Ascii-Encoding and a few other ones as the following source shows.
ASCIIEncoding encoder = new ASCIIEncoding();
Encoding enc = Encoding.GetEncoding(28591);
string response = enc.GetString(message, 0, bytesRead);
Which one will solve my problem?