web-dev-qa-db-ja.com

StringをHex nodejsに変換する方法

16進数から文字列への変換のような標準関数を探していましたが、文字列を16進数に変換したいのですが、これしか見つかりませんでした 関数 ...

// example of convert hex to String
hex.toString('utf-8')
8
DarckBlezzer

NodeJSでは、 Buffer を使用して文字列を16進数に変換します。

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')
18
Luis Estevez

以下のような機能を使用できます。

  function stringToHex(str) {

  //converting string into buffer
   let bufStr = Buffer.from(str, 'utf8');

  //with buffer, you can convert it into hex with following code
   return bufStr.toString('hex');

   }

 stringToHex('some string here'); 
3
Niraj Paudel

NPM amrhextotext 、単純なコンバーターテキストを16進数に、16進数をテキストに

インストール

npm i amrhextotext

Usange:

const text = 'test text'
const hex = '746573742074657874'

const convert = require('amrhextotext')

//convert text to hex
let hexSample = convert.textToHex(text)
//Result: 746573742074657874

//Convert hex to text
let textSample = convert.hexToUtf8(hex)
//Result: test text

note:ページからのソース

0
Diego