Can't convert HttpResponseMessage with UTF8 encoding
问题 I'm struggling with the usual conversion issue, but unfortunately I haven't been able to find anything for my specific problem. My app is receiving a System.Net.Http.HttpResponseMessage, from a php server, UTF8 encoded, containing some characters like \u00c3\u00a0 (à) and I'm not able to convert them. string message = await result.Content.ReadAsStringAsync(); byte[] messageBytes = Encoding.UTF8.GetBytes(message); string newmessage = Encoding.UTF8.GetString(messageBytes, 0, messageBytes.Length