js 数字转字符互转

//数字转字符
String.fromCharCode(97);//"a"

//字符转数字
‘a‘.charCodeAt();//97