如何在 C 中打印 UTF-16 字符?

发布于 2024-12-18 21:10:44 字数 94 浏览 1 评论 0原文

我有一个包含 UTF-16 字符的文件。我读取文件并可以将字符存储在 uint16_t 数组或 char 数组中(有更好的选择吗?)

但是我如何打印这些字符?

i have a file containing UTF-16 characters. i read in the file and can store the characters either in a uint16_t array or a char array (any better choice?)

But how do i print those characters?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转身泪倾城 2024-12-25 21:10:44

我假设您想打印到 stdoutstderr。一种方法是使用 libiconv 将 UTF-16 转换为 UTF-32(也称为作为 UCS-4) 转换为宽字符字符串 (wchar_t)。然后,您可以使用 wprintf 及其朋友来打印到标准流。

I'm assuming you want to print to stdout or stderr. One method would be to use libiconv to convert from UTF-16 to UTF-32 (also known as UCS-4) into a wide-character string (wchar_t). You could then use wprintf and friends to print to the standard streams.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文