I'm using JAVA and I'm trying to add the ASCII character 29(Group Separator) to a String(alphanumeric) as part of my algorithm. But I'm unable to verify the output since it doesnt get printed.
If its a non-printable character, is there any other way I can verify that it does get added.
Tried 1)Printing it like any other ASCII character 2)Printing its HEX value(0x1D)
System.out.println("Test1====="+Character.toString((char)0x1D));
System.out.println("Test3====="+String.valueOf(Character.toChars(29)));
Expected Result:Verify its printed. Actual Result:Unable to verify.