Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何将字符代码转换为我想要的?
我很肯定这必须是重复的,但所有搜索结果都是其他语言或相反的(字符到代码点)。
例如
charCode = 96 string = # ... ?
你可以这样做:
string = charCode.chr
上的.chr方法Fixnum。
.chr
Fixnum
96.chr #=> "c"