What I would do:
grep -a -r -l -F <fixed string> .
-a, --text
Process a binary file as if it were text; this is equivalent to the --binary-files=text option.
or
find . -type f -exec stringssh {}-c +'
strings "$1" | grep -FlF <fixed pattern>
' sh {} \;
strings - print the sequences of printable characters in files