如何使用 Unicode 映射
我发现了从各种系统到相应 Unicode 代码点 的所有良好映射。它们以清晰的格式列出,这肯定很容易解析。但由于我不想重新发明轮子,是否有一个 C/C++ 库使用这些文件将 char 数组从任何这些编码映射到 Unicode? 我只找到了 iconv,但它并不支持所有这些映射(例如 希伯来语),因为我在iconv -l
列表中找不到它。
I found all the nice mappings from various systems to the according Unicode code points. They are listed in a clear format, which would for sure be easy to parse. But since I don't want to reinvent the wheel is there a C/C++ library using these files to map char arrays from any of those encodings to Unicode?
I only found iconv, but it doesn't seam to support all these mappings (e.g. Hebrew) because I couldn't find it in the list of iconv -l
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ICU。
ICU.
iconv -l
列出 OS X Lion 上的 ISO-8859-8、代码页 862 和 MacHebrew。也许它们只是在您的操作系统中未启用,或者使用的是旧版本的iconv
。iconv -l
lists ISO-8859-8, codepage 862, and MacHebrew on OS X Lion. Maybe they're just not enabled in your OS or it's using an old version oficonv
.