使用 Javascript 查找 Unicode 字符名称
当用户输入数字时,我需要找出 Unicode 字符的名称。例如,输入 0041 并得到“拉丁大写字母 A”作为结果。
I need to find out the names for Unicode characters when the user enters the number for it. An example would be to enter 0041 and get given "Latin Capital Letter A" as the result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,没有标准方法可以做到这一点。您可能可以解析 UnicodeData.txt 文件来获取此信息。
As far as I know, there isn't a standard way to do this. You could probably parse the UnicodeData.txt file to get this information.
这应该就是您要找的东西。第一个数组只是 http://unicode.org/Public/UNIDATA/Index.txt 用
|
替换换行符;SO 不保留选项卡,因此如果您只是复制粘贴,第一部分可能无法工作。您会注意到某些字符是重复的,因此您可能需要进行一些清理。
Here should be what you're looking for. The first array is simply http://unicode.org/Public/UNIDATA/Index.txt with replacing newlines with
|
;SO doesn't preserve tabs so the first part may not work if you simply copy-paste it. You'll note that some characters are duplicates so you may want to do some cleanup.