topcss / my-notes

https://github.com/topcss/my-notes/issues/new

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C32ASM 改unicode 编码。

topcss opened this issue · comments

commented

怎么修改 exe 中 unicode 字符串呢?

C32ASM 不能直接替换 unicode 字符串。我们可以 Ctrl+F 找到对应的 unicode 字符串,查询结果会被高亮。一个汉字对应2个16进制编码,这里涉及到一个高位低位问题。

如:“万”字的unicode编码是“4E 07”,如果直接写会显示为乱码。你需要改成“07 4E”,然后另存为exe即可。

汉字转 unicode 可以用在线工具:http://tool.chinaz.com/tools/unicode.aspx
左侧输入汉字,点击“中文 转 Unicode”按钮即可转码。转码后,忽略“\u”字符串,就是需要的结果。