批量 Unicode

批量 Unicode

我的问题很简单。我需要将花哨的 unicode 放入批处理文件中。我已经将其放在chcp 65001开头了。

这是我的示例代码:

@echo off
chcp 65001 >NUL
echo [✓] This is a correct line
echo [✗] This is an incorrect line
pause

这是输出:

Unicode 输出

任何帮助都将不胜感激!

答案1

我最终意识到了问题所在。要使用正确的 unicode 运行批处理文件,您需要使用 Windows 终端(您可以在 Microsoft Store 上找到它)

相关内容