mystr="MYCOMPANY® PREMIER VISA SIGNATURE® CARD"
I tried below ways, but it is not removing the Â.
mystr= Normalizer.normalize(mystr, Normalizer.Form.NFD)
mystr= Pattern.compile("\\p{InCOMBINING_DIACRITICAL_MARKS}+").matcher(mystr).replaceAll("");
Is there any way to remove the accent characters from above string except the characters like Copyright, Trademark and Registered.
expectedString = "MYCOMPANY® PREMIER VISA SIGNATURE® CARD"