I have a little problem with my JsonStream in C#
I am reading a Json Blob in my Storage with this inside:
{"id":"275177", "fremdwort":"1.FFC-Frankfurt", "ipa":"ʹeːɐ̯stɐ ɛf ɛf ʦeː ʹfraŋkfʊrt"}
in C#:
while (Jsonreader.Read())
{ if (Jsonreader.TokenType == JsonToken.StartObject)
{
var record = serializer.Deserialize<JsonClass>(Jsonreader);
log.LogInformation(record.Id.ToString() +" , "+ record.Fremdwort +" , "+ record.Ipa);
If I log my JsonStreamer I receive this:
[2021-03-04T13:30:51.367Z] 275177 , 1.FFC-Frankfurt , ´e???st? ?f ?f ?e? ´fra?kf?rt
I am missing something to encode this questionmarks, What would be the solution to receive the right string without the ???.
Thank you stranger !