发送中文短信遇到困难,如何将汉字转换为unicode?(100分)

  • 主题发起人 主题发起人 小令
  • 开始时间 开始时间

小令

Unregistered / Unconfirmed
GUEST, unregistred user!
如何将汉字转换为unicode?
 
function UniStr(Str:String):WideString; //WideString is 16bit Unicode characters
begin
Result:=Str;
end;
 
强制转换即可

var
s1: string;
s2: widestring;
begin
s1 := '大富翁';
s2 := widestring(s1);
end;
 
求得其区位码发送,接收后还原
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
后退
顶部