参考博文Unicode字符编码
写了一个Matllab小程序,输出所有Unicode编码的汉字。输出汉字的Unicode编码的范围参考上述博文0x4E00~0x9FA5。打印结果和常见的python结果一致。
startStrDec=hex2dec('4e00');
stopStrDec=hex2dec('9fa5');
wordHanzi=cell(stopStrDec-startStrDec+1,1);
s=1;
for k=startStrDec:stopStrDec
tempHex=dec2hex(k);
wordHanzi{s}=native2unicode([255 254 hex2dec(tempHex(3:4)) hex2dec(tempHex(1:2))],'Unicode');
s=s+1;
end
下面是图示: