1

I'm getting an the following string from my server "\u{EEEE}. After parsing the value the backlash is escaped and the string becomes "\\u{EEEE}". How do I convert the string back to the icon ?

I tried to just send EEEE from the server but I haven't been able to interpolate the value into a \u{} tag.

Julian J. Tejera
  • 1,015
  • 10
  • 17

1 Answers1

1

I tried poking around the internet and couldn't really find anything. You could parse the hex value out, and use that to make a UnicodeScalar, but I can't think of any nicer ways.

Alexander
  • 59,041
  • 12
  • 98
  • 151