All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.java.rules.squid.S2973.html Maven / Gradle / Ivy

There is a newer version: 8.6.0.37351
Show newest version

The use of Unicode escape sequences should be reserved for characters that would otherwise be ambiguous, such as unprintable characters.

This rule ignores sequences composed entirely of Unicode characters, but otherwise raises an issue for each Unicode character that represents a printable character.

Noncompliant Code Example

String prefix = "n\u00E9e"; // Noncompliant

Compliant Solution

String prefix = "née";




© 2015 - 2025 Weber Informatics LLC | Privacy Policy