汉字的16进制存储

#include <stdio.h>

#include <iostream>

using namespace std;

void main()

{

char a[]={0xC0,0xEE,0xCE,0xC4,0xC4,0xFE,''};

cout<<a<<endl;

int i;

cin>>i;

}
原文地址:https://www.cnblogs.com/lwngreat/p/4226537.html