How to convert ISO8859-15 to UTF8?

后端 未结 8 2013
情歌与酒
情歌与酒 2020-12-12 18:04

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 -f ISO-8859-15          


        
相关标签:
8条回答
  • 2020-12-12 18:38

    I found this to work for me:

    iconv -f ISO-8859-14 Agreement.txt -t UTF-8 -o agreement.txt
    
    0 讨论(0)
  • 2020-12-12 18:39

    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

    0 讨论(0)
提交回复
热议问题