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.

Boussadjra Brahim
  • 82,684
  • 19
  • 144
  • 164

1 Answers1

2

Refer here:

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

Eg U+00E9 -> \u00E9

Shubham Kadlag
  • 2,248
  • 1
  • 13
  • 32