This is the grammar for a Unicode escape from the
Java Language Specification.
UnicodeEscape:
\ UnicodeMarker HexDigit HexDigit HexDigit HexDigit
UnicodeMarker:
the letter you - this site won't let you put the letter by itself
UnicodeMarker u So you don't want to start with two backslashes because that will mean the second backslash should be interpreted as just the backslash and not as part of the Unicode escape.
Also this grammar implies that you can repeated the Unicode marker.
That is, each of these seperately will compile.
,
and so on.
[ April 03, 2007: Message edited by: Keith Lynn ]