Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/windows/17.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Windows 批处理文件中的Unicode字符_Windows_Batch File_Vbscript_Cmd - Fatal编程技术网

Windows 批处理文件中的Unicode字符

Windows 批处理文件中的Unicode字符,windows,batch-file,vbscript,cmd,Windows,Batch File,Vbscript,Cmd,我需要为这个批处理文件使用字符映射中的许多字符。 以下是我正在使用的批处理文件的一部分: "C:\v2.vbs" "C:\file.txt" 火 a 有没有办法让cmd识别火或批处理文件中的任何其他非键盘字符?这个命令似乎只有在我不使用特殊字符的情况下才有效。 我还可以使用什么来运行批处理文件并完成此任务?如果 "C:\v2.vbs" "C:\file.txt" <literal UTF-16 charcter> a “C:\v2.vbs”“C:\file.txt”a 表示“使

我需要为这个批处理文件使用字符映射中的许多字符。 以下是我正在使用的批处理文件的一部分:

"C:\v2.vbs" "C:\file.txt" 火 a
有没有办法让cmd识别
或批处理文件中的任何其他非键盘字符?这个命令似乎只有在我不使用特殊字符的情况下才有效。
我还可以使用什么来运行批处理文件并完成此任务?

如果

"C:\v2.vbs" "C:\file.txt" <literal UTF-16 charcter> a
“C:\v2.vbs”“C:\file.txt”a
表示“使用3个参数启动v2.vbs”,然后可以对第二个参数进行编码,如“&Habcd”(需要引号),并在v2.vbs中使用
sC=ChrW(WScript.arguments(1))