Skip to content

Instantly share code, notes, and snippets.

@x13945
Created May 23, 2019 07:39
Show Gist options
  • Save x13945/beebf4b0699d274c60d7870053e82234 to your computer and use it in GitHub Desktop.
Save x13945/beebf4b0699d274c60d7870053e82234 to your computer and use it in GitHub Desktop.
生成iterm中快捷键需要对hex code
function toHex(str) {
var result = '';
for (var i = 0; i < str.length; i++) {
result += `0x${str.charCodeAt(i).toString(16)} `;
}
return result;
}
let res = toHex('http')
console.log('====================================');
console.log(res);
console.log('====================================');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment