I'm using font awesome in a Xamarin application. The api to which the XamarinApp is talking returns a fxxx string to indicate which icon to show. In code I add \u but it is seen as a string and not a unicode character.
var value = "f641";
newLabel.Text = char.Parse($"\\u{value}").ToString();
I tried char.Parse but it throws an error:
System.FormatException: String must be exactly one character long.
Any suggestions ?