Home > Enterprise >  output a unicode character in c language
output a unicode character in c language

Time:01-03

I tried to output an airplane unicode character in c language, but I got nothing on the console. my codes are like:

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

int main()
{
    setlocale(LC_CTYPE, setlocale(LC_ALL, ""));
    wprintf(L"           
  • Related