Checks if the character has a graphical representation (any printable character except space).
bool isgraph(String c) { int code = _getCode(c); return code >= 33 && code <= 126; }