I am interested in the following ASCII characters 11 Vertical Tab, 28 File Separtor and 13 Carriage Return. Through Java, the Character.isWhitespace() will tell me whether these characters are one of these types.
What I want to do is send input data as a String. For example character 13 is '\r' so this can be inputted into a String:
String input = new String("'\'rThis is");
From this I can identify that character 0, 1 and 2 from input.toCharArray() is ASCII character 13. How can the Vertical Tab and File Separtor be represented in a String.
I have done a lot of research but Google does not give the answer. The Horizantal tab is the tab character such as " This is" but what is the Veritical tab?