delphi返回一个汉字的Unicode编码


本文整理自网络,侵删。

 
//机内码 -> 汉字
Function MacCode2Chinese(AiUniCode : Integer) : String;
Var
ch, cl : Integer;
Begin
  ch := AiUniCode Div 256;
  cl := AiUniCode Mod 256;
  Result := C=h=r(ch) + C=h=r(cl);  //C=h=r 把这个编程 Chr
end;

//汉字 -> 机内码
Function Chinese2MacCode(AiChinese : String) : Integer;
Var
ch, cl : Integer;
Begin
  ch := Ord(AiChinese[1]);
  cl := Ord(AiChinese[2]);
  Result := (ch shl 8) + cl;
end;

//UniCode -> 汉字
Function UniCode2Chinese(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);
  s := C=h=r(StrToInt(ch)) + C=h=r(StrToInt(cl)) + #0;  //C=h=r 把这个编程 Chr
  Result := WideCharToString(pWideChar(s));
end;

//汉字 -> UniCode
Function Chinese2UniCode(AiChinese : String) : Integer;
Var
ch, cl : String[2];
a : array [1..2] of char;
Begin
  StringToWideChar(Copy(AiChinese, 1, 2), @(a[1]), 2);
  ch := IntToHex(Integer(a[2]), 2);
  cl := IntToHex(Integer(a[1]), 2);
  Result := StrToInt('$' + ch + cl);
end;

相关阅读 >>

Delphi动态创建一个鼠标指针图案

Delphi 7 中dbgrid的排序

Delphi 利用sendinput模拟鼠标键盘

Delphi使焦点固定到一个button上

Delphi 创建大窗口

Delphi 动态生成九宫格按钮

Delphi实现变速齿轮

Delphi显示 jpg、png、gif 图片及 gif 动画

Delphi windows 编程[11] - wm_size 消息

Delphi读写文本文件

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...