How to convert ISO8859-15 to UTF8?

后端 未结 8 2014
情歌与酒
情歌与酒 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: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

提交回复
热议问题