收藏
回答

微信小程序中怎么使用gb2312编码解码?

js代码
function analysis(hexString) {
    const byteArray = new Uint8Array(hexString.match(/.{1,2}/g).map(byte => parseInt(byte, 16)));
    // 使用TextDecoder解码字节数组为字符串
    const decoder = new TextDecoder('gb2312');
    const decodedString = decoder.decode(byteArray);
    return decodedString;
}


// // 输出结果字符串
console.log(analysis("d4c144363536353600000000")); //粤D65656



在微信小程序中使用不了TextDecoder,怎么办,有没有其他方法能把GB2312转成汉字


回答关注问题邀请回答
收藏
登录 后发表内容