16进制数如何转成字符?比如说我现在有两个16进制数 41和42 我怎么转成字符A和B呢?有没有什么函数可以直接转的??[解决办法]#$41 #$42 var C: Char; begin Byte(C) := StrToIntDef( '$ ' + '41 ', 0); end;