Is there any native mechanism in java/kotlin/android sdk that can help me unify all simmilar symbols?
What I need to achieve is that weather user types café, cafe or cafę to AutoCompleteTextView he should receive the same set of hints.
EDIT: Additional explanation. I need more than normalize string (café -> cafe). There are cases where my hints will include these special letters and when 'café' will be the hint to be displayed, normalizing user input will make it into 'cafe' and it won't match required hint.