
if (asc >= ' ' && asc < 128) {
    a = lookup[asc - ' '];
} else {
    // Replace unsupported character with '?'
    a = lookup['?' - ' '];
}
