Shell Scripting Linux

In shell Can I pass " to a program ? If not what is the work around ..?
Can I define * as a wild card charecter that will return all the values from
the files ..?

I am trying to create a tool that will return the values from a property file . This tool has to support all the wild card features .
Please help

try this

$ cat w.sh
#!/bin/bash
echo $1

$ sh w.sh '"'
"

$ sh w.sh \"
"