所以我有这个双重编码的 UTF-8 文件。例如。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>
</head>
<body>
<p>this is a “testâ€Â</p>
</body>
</html>
网址:http ://www.frostjedi.com/terra/scripts/demo/utf8-1.html
如果在 Firefox 中查看源代码,然后将其复制/粘贴到一个新文件中,我就有效地撤消了双重编码。例如。
http://www.frostjedi.com/terra/scripts/demo/utf8-2.html
我的问题是......我怎样才能通过 CLI 做到这一点?
我试过这个:
iconv -f UTF-8 -t ISO-8859-1 utf8-1.html > utf8-3.html
但是得到了这个:
iconv: illegal input sequence at position 294
有任何想法吗?