S
Sakura Data
Guest
Goal: How to get the Norwegian letter and not black diamond with white question mark symbol.
Problem:
When I get the data from the json file and upload it into C# I dont get the Norwegian letter. Instead I get the black diamond with white question mark symbol.
How do you enable to solve it? Thank you!
string path = System.IO.Directory.GetCurrentDirectory() + "\\Json\\test.json";
var data = System.IO.File.ReadAllText(path);
--------------------------------------
test.json
[
{
"test1": "jhØ",
"test2": "987"
},
{
"test1": "æsdfl",
"test2": "98"
}
]
----------------------------
Continue reading...
Problem:
When I get the data from the json file and upload it into C# I dont get the Norwegian letter. Instead I get the black diamond with white question mark symbol.
How do you enable to solve it? Thank you!
string path = System.IO.Directory.GetCurrentDirectory() + "\\Json\\test.json";
var data = System.IO.File.ReadAllText(path);
--------------------------------------
test.json
[
{
"test1": "jhØ",
"test2": "987"
},
{
"test1": "æsdfl",
"test2": "98"
}
]
----------------------------
Continue reading...