Here’s how to convert multiple files to UTF-8 format.

<pre lang="bash">
for file in *.csv; do
    iconv -f ascii -t utf-8 "$file" -o "${file%.txt}.utf8.csv"
done