天天看点

UTF8转16进制工具

//UTF8转16进制工具

function utf8ToHex(s) {

    return encodeURIComponent(s).replace(/%/g, ""); // remove all '%' characters

}