The overall format of using Iconv from the command line:
iconv -f old-encoding -t new-encoding file.txt > file_converted.txt
An example of converting a file from UTF-8 to iso-8859-1:
iconv -f UTF-8 -t iso-8859-1 file.txt > file_converted.txt