Knowledge base dedicated to Linux and applied mathematics.
Home > Linux > Tip of the day > How to Convert Text File From ISO-8859-15 to UTF-8 Encoding
Howto Convert Text File From UTF-8 to ISO-8859-15 Encoding ?
iconv command
$ iconv -f iso-8859-15 -t utf-8 file > output.file
will convert file in utf8 encoding. The result is stored in output.file