convert binary to text onlinejs code example
Example: binary to ascii javascript
const binaryAgent = str => str.replace(/\d+./g, char => String.fromCharCode(`0b${char}`));
const binaryAgent = str => str.replace(/\d+./g, char => String.fromCharCode(`0b${char}`));