I have a string in groovy which has accent characters. I need to read this value as it is including the accent characters. Currently, the accent character is getting converted to a 'é'.
I tried to use StringUtils.stripAccents
. It converts the accent character to "é".
String input = StringUtils.stripAccents("Gendé");
I expect to get "Gendé" but get "Gendé"