How to convert ISO8859-15 to UTF8?

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

    I got the same problem, but i find the answer in this page! it works for me, you can try it.

    iconv -f cp936 -t utf-8 
    

提交回复
热议问题