One way is to have 255 bytes:
function removeHex(txt) { // Assume I have all of them return String(txt).replace(/[\\x00\\x01\\x02\\x03\\xFF]/g, \'\') } rem