Checks if the character is a control character (0x00-0x1F or 0x7F).
bool iscntrl(String c) { int code = _getCode(c); return (code >= 0 && code <= 31) || code == 127; }