不要な Unicode エスケープシーケンスを報告します。
A Unicode escape sequence is unnecessary when the file encoding can handle the character without escaping it.
This inspection does not report Unicode control characters, except for line feed and horizonal tab.
例:
String s = "\u0078";
クイックフィックス適用後:
String s = "x";