I have UTF formatted strings, especially place names, in different languages such as:
A="København"
B="北京市"
C="Skåne län"
I would like to convert them to:
A="Kobenhavn"
B="Beijing"
C="Skane-lan"
Basically, to be able to do what unidecode does, but to do it in Bash. (I'm on Windows with MSys)
Can anyone point me somewhere?