Here you can find the source of normalize(String string)
public static String normalize(String string)
//package com.java2s; //License from project: Apache License import java.text.Normalizer; import java.text.Normalizer.Form; public class Main { public static final Form NORMALIZATION_FORM = Normalizer.Form.NFC; public static String normalize(String string) { if (string != null) { string = Normalizer.normalize(string, NORMALIZATION_FORM); }/* w ww . ja va 2s. com*/ return string; } }