Characters in the range 0x00-0xFF can be expressed using either hexadecimal escapes (\xNN) or Unicode escapes (\uNNNN, \u{N}).
Hexadecimal escapes are more concise for this range and provide a consistent representation.
This rule enforces the use of hexadecimal escapes for characters that can be represented in two hex digits.
If your codebase has established conventions around using Unicode escapes for consistency with characters outside the 0x00-0xFF range, you might prefer to disable this rule.
Some teams prefer the uniformity of always using Unicode escapes regardless of the character value.