Java
Non-Basic Latin character
Info
New
Last modified: 03 December 2024Reports non-Basic Latin characters in literals and suggests replacing them with unicode entities.
Example:
// © 2021
char c = '©';
String s = "Áî";
After the quick-fix is applied:
// © 2021
char c = '\u00a9';
String s = "\u00c1\u00ee";
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
ConvertToBasicLatin
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java Internationalization, 243.23126 |
Thanks for your feedback!
Was this page helpful?