Use the flag -F to search for fixed strings -- instead of regular expressions. From man grep:
-F, --fixed-strings
Interpret PATTERN as a list of fixed strings, separated by
newlines, any of which is to be matched. (-F is specified by
POSIX.)
For example:
$ grep -F "ab*c" <<< "ab*c"
ab*c