前端js 数字转字符互转 云博小周宇2024年5月5日2023年8月11日1 Min Read //数字转字符 String.fromCharCode(97);//"a" //字符转数字 ‘a‘.charCodeAt();//97