from http://stackoverflow.com/questions/64860/best-way-to-convert-text-files-between-character-sets On Linux/UNIX/OS X/cygwin: Gnu iconv suggested by Troels Arvin is best used as a filter. It seems to be universally available. Example: $ iconv -f UTF-8 -t ISO-8859-15 in.txt > out.txt As pointed out by Ben , there is an online converter using iconv.