posted 23 years ago
Rick,
You can read JLS chapter 3 for all the details.
Note that unicode \u000a and \u000d are line terminators.
So, for sure you want to avoid using it. Instead, use
the escape sequence \n, \r.
As you can see in this example, using these two unicode charaters in code may generated unwanted result, even in the comment!