I mean, if this were a bytechain, you would either use the hex-encoded ASCII version of the string or the hex-encoded wide version. You wouldn’t use both.
The string can only exist in one format in the compiled binary. Imported functions are ASCII. Usage strings are often ASCII. File system paths are often in UTF-16.
So why use both ascii and wide for the same string? It feels wasteful and could maybe even add false positives.