读取指定字符位置的 Unicode 码点。
string.char_code_at(index)
text = 'A' result = text.char_code_at(0) // 输出:65 print result