Hi,
I have been looking around all over the place and haven't found a way to convert a UTF-8
String that contains Japanese character into HTML entities.
For example I have the character: あ
Which corresponds to a 3 Byte String with int values (227,129,130).
How do I convert these three integers into one large integer that is used as the unicode value for the HTML Enity?
The correct html entity value for this character is あ.
This seems easy in javascript but not
Java which I need it for.