I am reading the book: C: In a Nutshell, and after reading the section Character Sets, which talks about wide characters, I wrote this program:
<
This works for me
#include #include #include #include int main(void) { wchar_t wc = L'\x3b1'; setlocale(LC_ALL, "en_US.UTF-8"); wprintf(L"%lc\n", wc); return 0; }