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";
このインスペクションはデフォルトではエディター内をハイライトせず、修正のみを提供します。