How to search for literal string "@abc"?

I tried like in the title, and the “@” is apparently ignored or treated as a wildcard. How do I limit the search to only match the literal string?

Thanks

The Concordance only indexes alphanumeric characters.

Try “?abc” or “*abc” (with/without quotes).

The “?abc” will probably work, thanks.