1

我想在 cmd 窗口中 键入“ ”时将“ אבג”写入 txt 文件 ,它看起来像:http: //i.stack.imgur.com/A02rD.png 并且当我按下 Enter 时,文本文件内容是:

echo אבג >> c:\test.txt



€‚ 

如何将希伯来文文本写入文本文件?

4

1 回答 1

1

解决此问题的一种方法是通过获取实体将字母打印到 html 文件:

@echo off
set gimel= ^^^א
set kaf= ^^^כ
set alef= ^^^א
setlocal 
echo  ^<html^>  ^<body^> %gimel% %kaf% %alef% ^</body^> ^</html^> > herb.html
于 2012-11-22T15:34:45.057 回答