The use of Unicode escape sequences should be reserved for characters that would otherwise be ambiguous, such as unprintable characters.
This rule ignores sequences composed entirely of Unicode characters, but otherwise raises an issue for each Unicode character that represents a
printable character.
Noncompliant code example
String prefix = "n\u00E9e"; // Noncompliant
Compliant solution
String prefix = "née";