得到汉字的内码

void main()
{
    char   ps[]="你好"; 
    char t=*ps;
    *ps=*(ps+1);
    *(ps+1)=t;                                      ;
    unsigned short   int   tmp=*(short   int*)ps;
    cout<<tmp<<endl;
}
网上找的一段代码

你可能感兴趣的:(C++,C++,内码)