Reputation: 1
I need to represent accented letters in java string like é è ù ô .. etc , i had found the answer here which mentions that we have to use for example "\u00E9"
to represent é
, but i need a full reference for all accented letters.
Upvotes: 1
Views: 1470
Reputation: 2308
Refer here:
https://en.wikipedia.org/wiki/List_of_Unicode_characters
Eg U+00E9 -> \u00E9
Upvotes: 2