Boussadjra Brahim
Boussadjra Brahim

Reputation: 1

Full reference of the Unicode of accented letters in Java strings

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

Answers (1)

Shubham Kadlag
Shubham Kadlag

Reputation: 2308

Refer here:

https://en.wikipedia.org/wiki/List_of_Unicode_characters

Eg U+00E9 -> \u00E9

Upvotes: 2

Related Questions