what is difference of below operators for spaces?
\t, \n, \x0B, \f and \r.
what is difference of below operators for spaces?
\t, \n, \x0B, \f and \r.
Looks like you left out the operators, but I'm interpreting you to want to know how various Java APIs handle those characters.
The Java handling of these characters is determined by their Unicode character properties. See the Unicode spec to see what properties they have, and thus what the different functions in Character return for them.
www.unicode.org will tell you all you ever wanted to know about Unicode properties.
\t The tab character ('\u0009')
\n The newline (line feed) character ('\u000A')
\r The carriage-return character ('\u000D')
\f The form-feed character ('\u000C')
\x0B The vertical tabulation (VT) character
\t - Horizontal tab
\n - New line
\x0B - Vertical tab
\f - form feed
\r - carriage return
They are not operators, they are string/char literals for different characters: http://www.janeg.ca/scjp/lang/charLiteral.html