If I have a file containing ASCII control character, for example, ^A (Start of Header).
^A
How can I find it using grep in Linux?
As seen in comments, this solved the issue:
grep $'\01' file