Convert Text File From ISO-8859-1 to UTF-8

Convert Text File From ISO-8859-1 to UTF-8

How to convert a text file from ISO-8859-1 to UTF-8 on linux command line. more >>

Contents

iconv command

Open Linux Shell and enter the following command:

iconv --from-code=ISO-8859-1 --to-code=UTF-8 iso.txt > utf.txt


where iso.txt is the source file
and utf.txt is the target file.