Checks if the character is printable (including space).
bool isprint(String c) { int code = _getCode(c); return code >= 32 && code <= 126; }