我想将“אבג
”写入txt文件
当我在cmd窗口中输入“echo אבג >> c:\test.txt
”时,它看起来像:
http://i.stack.imgur.com/A02rD.png
当我按下Enter键时,文本文件内容为:
€‚
如何将希伯来文本写入文本文件?
答案 0 :(得分:1)
解决此问题的一种方法是将字母打印到html文件by getting their entities:
@echo off
set gimel= ^^^א
set kaf= ^^^כ
set alef= ^^^א
setlocal
echo ^<html^> ^<body^> %gimel% %kaf% %alef% ^</body^> ^</html^> > herb.html