불필요한 유니코드 이스케이프 시퀀스를 보고합니다.
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";