JavaScript 字符转换
javascript 函数 charCodeAt() 会将字符转换为 UNICODE 数字。
相反,如果我想查找某个字符的 windows-1252 数字代码,我该怎么做?
谢谢,
The javascript function charCodeAt() will convert a character to the UNICODE numeric.
If, instead, I want to find the windows-1252 numeric code of a character, how can I do that?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否正在寻找 Windows1251 到 Unicode:
例如用作
String.fromCharCode(winEncToUni[65])
(返回A
)或者也许 Unicode 到 Windows1251?
我已经大大缩短了表格:代码的前半部分(0x00-0x7F)在所有代码页(以及 Unicode)中都是相等的,并且序列 0xA0-0xFF 在 Unicode 和 Windows-1252 中是相等的。
Are you looking for Windows1251 to Unicode:
use for example as
String.fromCharCode(winEncToUni[65])
(returnsA
)or perhaps Unicode to Windows1251?
I have shortened the table quite much: the first half of the codes (0x00-0x7F) are equal in all the codepages (and in Unicode), and the sequence 0xA0-0xFF are equal in Unicode and Windows-1252.