I need to manage multiple European languages and I can't use utf-8 but only ansi.
I ask if there is a way to find the ansi equivalent for special chars of European languages:
Here a example of equivalent tables:
Italian
à = a'
è = e'
ì = i'
ò = o'
ù = u'
Spanish
á = ‘ + a
é = ‘ + e
í = ‘ + i
ó = ‘ + o
ú = ‘ + u
ñ = ~ + n
ü = ” + u
¡ = Alt (hold down) + !
¿ = Alt (hold down) + ?
German
Ä Uppercase Umlaut (A)
Ö Uppercase Umlaut (O)
Ü Uppercase Umlaut (U)
ß Eszett (ss)
ä Lowercase Umlaut (a)
ö Lowercase Umlaut (o)
ü Lowercase Umlaut (u)
French
À Uppercase Accent Grave (A)
 Uppercase Accent Circonflex (A)
Ä Uppercase Accent Tréma (A)
Æ Uppercase Ligature(AE)
Ç Uppercase Cedilla (C)
È Uppercase Accent Grave (E)
É Uppercase Accent Aigu (E)
Ê Uppercase Accent Circonflex (E)
Ë Uppercase Accent Tréma (E)
Î Uppercase Accent Circonflex (I)
Ï Uppercase Accent Tréma (I)
Ô Uppercase Accent Circonflex (O)
Œ Uppercase Ligature(OE)
Ù Uppercase Accent Grave (U)
Û Uppercase Accent Circonflex (U)
Ü Uppercase Accent Tréma (U)
à Lowercase Accent Grave (a)
â Lowercase Accent Circonflex (a)
ä Lowercase Accent Tréma (a)
æ Lowercase Ligature(ae)
ç Lowercase Cedilla (c)
For example for Italian (my mother tongue) the accent can be easy convert in this way:
à = a'
è = e'
ì = i'
ò = o'
ù = u'
How ask if there is an easy way to do the some for the other languages.
Thanks !