我正在寻找一些标准功能,如十六进制到字符串但反向,我想将字符串转换为十六进制,但我只发现这个qazxsw poi ...
function
在NodeJS中,使用// example of convert hex to String
hex.toString('utf-8')
将字符串转换为十六进制。
Buffer
关于它如何工作的简单示例:
Buffer.from('hello world', 'utf8').toString('hex');
您可以使用如下功能:
const bufferText = Buffer.from('hello world', 'utf8'); // or Buffer.from('hello world')
console.log(bufferText); // <Buffer 68 65 6c 6c 6f 20 77 6f 72 6c 64>
const text = bufferText.toString('hex');
// To get hex
console.log(text); // 68656c6c6f20776f726c64
console.log(bufferText.toString()); // or toString('utf8')
// hello world
//one single line
Buffer.from('hello world').toString('hex')