我要在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 字符存储在一些任意变量中,并且我需要一种方法将它们打印在屏幕上。
任何建议都将不胜感激。