How can I identify non-ASCII characters from the shell?
listed in answer
ANSWER:
I want to change the encoding of a text file from UTF-8 to ASCII …
… replace all instances of non-ASCII characters …
Then tell your conversion tool to do so.
$ iconv -c -f UTF-8 -t ASCII <<< 'Look at ç§Â.'
Look at .
$ iconv -c -f UTF-8 -t ASCII//translit <<< 'áēìöų'
aeiou
by Ignacio Vazquez-Abrams from http://superuser.com/questions/417390

New Comments