I want to save files which will have name with danish characters, for example “Helloæ”.
The string which saves the filename has this value: Helloæ
How to make it convert æ to æ ? This question isn’t just about the “æ” characters, but for all other possible letters.
æis the HTML encoding ofæ. Thus, you need to HTML-decode your string.HttpUtility.HtmlDecode does exactly that: