gpt4 book ai didi

c - 在C中打印UTF-8多字节字符

转载 作者:行者123 更新时间:2023-11-30 14:36:29 25 4
gpt4 key购买 nike

我编写此代码是为了打印 UTF-8 多字节字符串。但它无法正确打印。注意:我是在Linux系统中进行的。

#include <stdio.h>
#include <locale.h>

int main()
{
char *locale = setlocale(LC_ALL, "");
printf("\n locale =%s\n", locale);
printf("test\n \x263a\x263b Hello from C\n", locale);

return 0;
}

最佳答案

使用\u代替\x:

#include <stdio.h>
#include <locale.h>

int main()
{
char *locale = setlocale(LC_ALL, "");
printf("\n locale =%s\n", locale);
printf("test\n \u263a\u263b Hello from C\n");

return 0;
}

它运行并产生以下输出:

$ gcc foo.c
$ ./a.out

locale =C
test
☺☻ Hello from C

关于c - 在C中打印UTF-8多字节字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58039815/

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