How to get charcode from binairy code string javascript 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}`));