I am reinventing the wheel and creating my own JSON parse methods in Java.
I am going by the (very nice!) documentation on json.org. The only part I am unsure about is w
Even if it's not very specific, I would assume that they refer to the "control" character category from the Unicode specification.
In Java, you can check if a character c is a Unicode control character with the following expression: Character.getType(c) == Character.CONTROL.
c
Character.getType(c) == Character.CONTROL