C库函数 - mbtowc() C库函数 - mbstowcs() C库函数 - wctomb() C库函数 - mbtowc() #include <stdio.h> #include <stdlib.h> #include <string.h> int main () { char *str = "This is codingdict.com"; wchar_t mb[100]; int len; len = mblen(NULL, MB_CUR_MAX); mbtowc(mb, str, len*strlen(str) ); wprintf(L"%ls \n", mb ); return(0); } C库函数 - mbstowcs() C库函数 - wctomb()