如何将unicode转换为QT流中的可打印字符串
我正在将流写入文件和标准输出,但我得到了如下所示的某种编码:
\u05ea\u05e7\u05dc\u05d9\u05d8 \u05e9\u05e1\u05d9\u05de\u05dc \u05e9\u05d9\u05e0\u05d5\u05d9 \u05d1\u05e1\u05d2\u05e0\u05d5\u05df \u05dc\u05d3\u05e2\u05ea\u05d9 \u05d0\u05dd \u05d0\u05e0\u05d9 \u05d6\u05d5\u05db\u05e8 \u05e0\u05db\u05d5\u05df
如何将其转换为可打印字符串?
I'm writing a stream to a file and stdout, but I'm getting some kind of encoding like this:
\u05ea\u05e7\u05dc\u05d9\u05d8
\u05e9\u05e1\u05d9\u05de\u05dc
\u05e9\u05d9\u05e0\u05d5\u05d9
\u05d1\u05e1\u05d2\u05e0\u05d5\u05df
\u05dc\u05d3\u05e2\u05ea\u05d9
\u05d0\u05dd \u05d0\u05e0\u05d9
\u05d6\u05d5\u05db\u05e8
\u05e0\u05db\u05d5\u05df
How can I convert this to a printable string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道你是如何打印字符串的,但这只是 Unicode:
如果我编译并运行它,
我可以在控制台调试输出和文件中看到可打印字符:
所以你可能做错了什么或者看错方向了,您可以粘贴您的代码以便我们更好地帮助您吗?
I can't figure out how you are printing the string, but that is just Unicode:
If I compile and run it
I can see the printable characters both in the console debug output and in the file:
So you are probably doing something wrong or looking in the wrong direction, can you paste your code so we can help you better?