I have a challenge to convert Unicode character code like /u009a into the correct sign (/u009a => š). Example: u009a into š also i have html codes which need to be converted to the correct value like: ć => ć.
The language of my program is c# with framework net 8.
I get this values from a rest api as json response.
To make my question more clear here a example from the json properties what i get from the api which i need converted: Value: “lastname”: “Mu00e1leu009aević”, “street”: “Bauernfeldstrau00dfe”
I need to convert the above Value into this c# properties: “lastname”: “Málešović”, “street”: “Bauernfeldstraße”
This values saved into a Microsoft SQL Server where we generate reports with.
thank you