Convert a iso-8859-1 charset file into a utf-8 charset file using standard Linux tools.
The solution is using bash shell on a Linux OS:
iconv --from-code=ISO-8859-1 --to-code=UTF-8 iso.txt > utf.txt
Knowledge is power
Convert a iso-8859-1 charset file into a utf-8 charset file using standard Linux tools.
The solution is using bash shell on a Linux OS:
iconv --from-code=ISO-8859-1 --to-code=UTF-8 iso.txt > utf.txt