无法将ANSI中的.txt文件转换为Windows中的UTF-8

时间:2017-04-07 00:43:35

标签: encoding

我们正在使用Windows Server2008R2,任何人都可以帮助我在命令行中将ANSI中的.txt文件转换为UTF-8格式。我找不到正确的答案。

由于

1 个答案:

答案 0 :(得分:0)

重复? https://superuser.com/questions/1163753/converting-text-file-to-utf-8-on-windows-command-prompt

您可以使用PowerShell轻松完成此操作:

Get-Content .\test.txt | Set-Content -Encoding utf8 test-utf8.txt