“Konwertuj binarny na String JavaScript” Kod odpowiedzi

Przekształcanie binarne na tekst JS

function binaryAgent(str) {

var newBin = str.split(" ");
var binCode = [];

for (i = 0; i < newBin.length; i++) {
    binCode.push(String.fromCharCode(parseInt(newBin[i], 2)));
  }
return binCode.join("");
}
binaryAgent('01000001 01110010 01100101 01101110 00100111 01110100');
//translates to "Aren't"
Silly Skunk

Binary do ASCII JavaScript

const binaryAgent = str => str.replace(/\d+./g, char => String.fromCharCode(`0b${char}`));
Yawning Yacare

BIN to Bit String JavaScript

function dec2Bin(dec)
{
    if(dec >= 0) {
        return dec.toString(2);
    }
    else {
        /* Here you could represent the number in 2s compliment but this is not what 
           JS uses as its not sure how many bits are in your number range. There are 
           some suggestions https://stackoverflow.com/questions/10936600/javascript-decimal-to-binary-64-bit 
        */
        return (~dec).toString(2);
    }
}
Hilarious Hummingbird

Konwertuj binarny na String JavaScript

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");
yunielrc

Odpowiedzi podobne do “Konwertuj binarny na String JavaScript”

Pytania podobne do “Konwertuj binarny na String JavaScript”

Więcej pokrewnych odpowiedzi na “Konwertuj binarny na String JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu