I have the following code in Java to replace the characters with tildes like:
á é í ó ú Á É Í Ó Ú à è ì ò ù À È Ì Ò Ù
text = text.replace( "á", "a" );
text = text.replace( "é", "e" );
text = text.replace( "Ã", "i" );
text = text.replace( "ó", "o" );
text = text.replace( "ú", "u" );
// caracteres raros: tildes mayusculas
text = text.replace( "Ã", "A" );
text = text.replace( "É", "E" );
text = text.replace( "Ã", "I" );
text = text.replace( "Ó", "O" );
text = text.replace( "Ú", "U" );
// caracteres raros: tildes inversas minusculas
text = text.replace( "Ã ", "a" );
text = text.replace( "è", "e" );
text = text.replace( "ì", "i" );
text = text.replace( "ò", "o" );
text = text.replace( "ù", "u" );
// caracteres raros: tildes inversas mayusculas
text = text.replace( "À", "A" );
text = text.replace( "È", "E" );
text = text.replace( "Ì", "I" );
text = text.replace( "Ã’", "O" );
text = text.replace( "Ù", "U" );
// caracteres raros: ñ minuscula y mayuscula
text = text.replace( "Ñ", "n" );
text = text.replace( "ñ", "N" );
I want to use a notation like:
text = text.replace( "\uD1232", "N" );
But i don't know where to find a table with that characters: ... À, È, Ì ...