Determines if codeUnit is between SPACE (ASCII 32) and ~ (ASCII 126).
codeUnit
bool isValidAsciiChar(int codeUnit) => 32 <= codeUnit && codeUnit <= 126;