View on GitHub

web3js-cn

web3.fromAscii

将任何的ASCII码字符串转为HEX字符串。

调用:

web3.fromAscii(textString,[padding])

参数:

返回值:

示例:

//test.js
var str = web3.fromAscii('ethereum');
console.log(str); // "0x657468657265756d"

var str2 = web3.fromAscii('ethereum', 32);
console.log(str2); // "0x657468657265756d000000000000000000000000000000000000000000000000"

在终端执行脚本:

$ node test.js
0x657468657265756d
0x657468657265756d

教程推荐: