Example:
// © 2021
char c = '©';
String s = "Áî";
After the quick-fix is applied:
// © 2021
char c = '\u00a9';
String s = "\u00c1\u00ee";
By default, this inspection does not highlight in the editor, but only provides a fix.