0

Im a newbie here.I need help how to decode a html string "&#128081" to char in c#? it should be show crown character or if its not supported it should show a rectangle.Im working for iOS.

Thank you for all your help.

1 Answers1

2

Try this code to Decode HTML to Unicode Chars

string s =  System.Net.WebUtility.HtmlDecode("&#128081"); 
Aftab Ahmed
  • 1,727
  • 11
  • 15