js_reverse/夜幕-js/编码.js
2023-03-07 18:03:44 +08:00

8 lines
157 B
JavaScript

// 编码转字符
let value = String.fromCharCode(72,69,76,77);
console.log(value);
// 字符转编码
let value1 = 'h';
console.log(value1.charCodeAt());