# Number.to_char ## 功能 按当前数字对应的 Unicode 码点生成单字符字符串。 ## 语法 ```bt number.to_char() ``` ## 参数 无参数。 ## 返回值 | 类型 | 说明 | | ------ | ------ | | String/Null | 码点有效时返回字符串;无效时返回 Null。 | ## 示例 ```bt code = 65 result = code.to_char() // 输出:A print result ``` ## 注意事项 - 码点超出 Unicode 有效范围时返回 Null。