Reports non-Basic Latin characters in literals and comments. The inspection provides a fix to replace such characters with Unicode escapes in literals, and with HTML entities in comments.

예:


  // © 2021
  char c = '©';
  String s = "Áî";

빠른 수정을 적용한 후:


  // © 2021
  char c = '\u00a9';
  String s = "\u00c1\u00ee";
기본적으로 이 검사는 에디터에서 강조 표시하지 않으며, 수정만을 제공합니다.