In Java, the character escape code is parsed in the source code, not just String. Therefore you are able to use Unicode identifiers without Unicode encoding.
This is the reason the \u000d in the comment is parsed as a newline, ending the comment and beginning an instance initializer.
Interested in Java? Check out this Java tutorial by Intellipaat.