gpt4 book ai didi

c - 显示扩展 ASCII 代码中的字符 (Ubuntu)

转载 作者:太空狗 更新时间:2023-10-29 15:06:25 25 4
gpt4 key购买 nike

我需要打印 ASCII 扩展的字符部分,即:

char p = 219; // a rectangle   
printf("%c\n", p);

但是,在 shell 中它没有显示正确的字符.. 我该怎么做才能看到矩形?

谢谢

最佳答案

使用 libiconv 将 CP-1252 或 ISO-8859-1 或您要转换的任何 8 位字符集转换为 UTF-8;像这样:

#include <iconv.h>
iconv_t cd = iconv_open("utf-8", "cp-1252");
iconv(cd, &inbuf, sizeof(inbuf), &outbuf, sizeof(outbuf)); // <- psuedocode, change to meet your needs

关于c - 显示扩展 ASCII 代码中的字符 (Ubuntu),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5781447/

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