Why is this an issue?
Control characters aren’t visible to maintainers, so they should be escaped.
Noncompliant code example
const char* foo = "A B"; // Noncompliant, contains a tabulation
Compliant solution
const char* foo = "A\tB"; // Compliant, use escaped value
Exceptions
Raw string literals has no escape character mechanism.