gpt4 book ai didi

C++:如何将unicode字符打印到文本文件

转载 作者:行者123 更新时间:2023-11-28 04:10:39 25 4
gpt4 key购买 nike

我需要将 unicode 符号打印到文件中,但我却得到了它们的代码。

这是一个例子:

#include <iostream>
#include <fstream>

using namespace std;

int main () {
int code = 33;
wchar_t sym = wchar_t(code);

ofstream output ("output.txt");
output << sym << "\n";
output.close();

return 0;
}

所以我希望在我的文件中看到 !,但我看到了 33。我该如何解决?

最佳答案

How can I print unicode characters to text file

I expect to see ! in my file

这里是一个写法

UTF-8:

std::ofstream output("output.txt");
output << u8"!\n";

UTF-16:

std::basic_ofstream<char16_t> output ("output.txt");
output << u"!\n";

UTF-32:

std::basic_ofstream<char32_t> output ("output.txt");
output << U"!\n";

wchar_t 也可以工作,但前提是宽编译字符编码是 unicode。是 UTF-16 还是 UTF-32 还是其他取决于系统:

std::wofstream output ("output.txt");
output << L"!\n";

关于C++:如何将unicode字符打印到文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57879323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com