报告不必要的 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";