Reputation: 2249
How can i convert HTML symbol to Java symbol? For example: I have 
String
and i need Java char
like \ue000
. What i need to do?
Upvotes: 0
Views: 326
Reputation: 2249
I found better solution in Android. I just call static method Html.fromHtml("")
, and the given result wat another String
in Java source format like \ue000
.
Upvotes: 0