Advertisement
dtung

hello 世界

Jun 8th, 2022
1,010
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <fcntl.h>
  3.  
  4. int main() {
  5.     _setmode(_fileno(stdout), _O_U8TEXT);
  6.     wprintf(L"hello, 世界\n");
  7.     wchar_t *s = L"hello again, 世界\n";
  8.     wprintf(L"%s", s);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement