If data in my database that create with MS-ACCESS contain a special character that use in SQL ( ', ", *, %, ?, _ ). How can I use SQL command to for this case?

For example my data in string type is

Don't
"Say"
*#06#
50%
What?
Student_Id


It's sure that i can't to use " select * from Table1 where Field1 like '*#06#' " for select the record of *#06#. So please help me.
It will be so clear if you can give me some example too.

PS. I found that double of ' (use single quote twice that not double quote ) in SQL statement as ' value data like this.
" select * from Table1 where Field1 like 'Don''t' "