Web3.jsでUTF8文字列と16進数データの相互変換
2740 ワード
- Web3.js 1.0.0 を使用した例です。
Web3.js のインストール
$ npm install web3 --save
サンプルコード
let Web3 = require('Web3');
console.log(Web3.version);
// => 1.0.0-beta.34
// UTF8String to HexData
let data = Web3.utils.utf8ToHex('piyo');
console.log(data);
// => 0x7069796f
// HexData to UTF8String
let string = Web3.utils.hexToUtf8(data);
console.log(string);
// => piyo
Note
- Ethereum 関連の情報は https://scrapbox.io/sushiether/ に集約することにしました。
- この記事の内容に変更・更新がある場合は、以下の URL を更新します。
- https://scrapbox.io/sushiether/Web3.jsでUTF8文字列と16進数データの相互変換
$ npm install web3 --save
let Web3 = require('Web3');
console.log(Web3.version);
// => 1.0.0-beta.34
// UTF8String to HexData
let data = Web3.utils.utf8ToHex('piyo');
console.log(data);
// => 0x7069796f
// HexData to UTF8String
let string = Web3.utils.hexToUtf8(data);
console.log(string);
// => piyo
Note
- Ethereum 関連の情報は https://scrapbox.io/sushiether/ に集約することにしました。
- この記事の内容に変更・更新がある場合は、以下の URL を更新します。
- https://scrapbox.io/sushiether/Web3.jsでUTF8文字列と16進数データの相互変換
Author And Source
この問題について(Web3.jsでUTF8文字列と16進数データの相互変換), 我々は、より多くの情報をここで見つけました https://qiita.com/hm0429/items/2c6c7d871863ca40cdf9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .