📜  将二进制转换为字符串 javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:35.786000             🧑  作者: Mango

代码示例4
function binaryAgent(str) {
  const bytes = str.split(' ')
  let output = ''
    
  for (let k = 0; k < bytes.length; k++){
      output += String.fromCharCode(parseInt(bytes[k], 2))
  }
  
  return output
}

binaryAgent("01000001 01110010 01100101 01101110 00100111 01110100 00100000 01100010 01101111 01101110 01100110 01101001 01110010 01100101 01110011 00100000 01100110 01110101 01101110 00100001 00111111");