I have an Arabic file encoded in ISO8859-15. How can I convert it into UTF8? I used iconv but it doesn\'t work for me.
iconv
iconv -f ISO-8859-15
I found this to work for me:
iconv -f ISO-8859-14 Agreement.txt -t UTF-8 -o agreement.txt
I have ubuntu 14 and the other answers where no working for me
iconv -f ISO-8859-1 -t UTF-8 in.tex > out.tex
I found this command here