如何将String转换为Hex nodejs

问题描述 投票:7回答:2

我正在寻找一些标准功能,如十六进制到字符串但反向,我想将字符串转换为十六进制,但我只发现这个qazxsw poi ...

function
node.js string hex
2个回答
17
投票

在NodeJS中,使用// example of convert hex to String hex.toString('utf-8') 将字符串转换为十六进制。

Buffer

关于它如何工作的简单示例:

Buffer.from('hello world', 'utf8').toString('hex');

2
投票

您可以使用如下功能:

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')
© www.soinside.com 2019 - 2024. All rights reserved.