1

我要在C中打印一些unicode(4 位十六进制)字符。

我存储在一些短整数变量中的那些字符。以下是我应该用于我的目的的代码:

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

int main(void) {
    
    setlocale(LC_ALL,"");

    short a = 0x099A, b = 0x09BE;
    wchar_t *string1 = (wchar_t *) calloc(20, sizeof(wchar_t));
    sprintf(string1, "\\u%04x\\u%04x", a, b);
    printf(" %s ", string1);

    wchar_t *string2 = (wchar_t *) calloc(20, sizeof(wchar_t));
    strcpy(string2, (wchar_t *) "\u099A\u09BE");
    printf(" %s \n", string2);

    return 0;
}

现在的问题是:

尽管string2在终端中显示了正确的输出,但string1不是。

但我必须使用一种方法,即我将 unicode 字符存储在一些任意变量中,并且我需要一种方法将它们打印在屏幕上。

任何建议都将不胜感激。

4

1 回答 1

3

为了打印存储在变量中的 Unicode 字符,为什么不将它们转换为wchar_t并使用例如wprintf

wchar_t ac = a;
wchar_t bc = b;

wprintf(L"%c%c", ac, bc);
于 2012-08-18T09:12:02.810 回答