function Unicode2Chs(AiUniCode : Integer) : String;
Var
ch, cl : String[3];
s : String;
Begin
s := IntToHex(AiUniCode, 2);
cl := '$' + Copy(s, 1, 2);
ch := '$' + Copy(s, 3, 2);
if ch='$' then s := Chr(StrToInt(cl)) + #0
else s := Chr(StrToInt(ch)) + Chr(StrToInt(cl)) + #0;
Result := WideCharToString(pWideChar(s));
end;
使用:Unicode2Chs($6211);
返回:'我'
很鄙视楼上的恶劣态度,貌似很牛B啊,不过这里不是牛B人来的地方。