This works a treat
http://createqrcode.appspot.com/
Note that QR Codes are made for web links.
-update-
You can even show text without a website using javascript! Just paste this into the URL.
javascript: document.write("Your text here!");
You can also change the background color by doing this.
document.body.style.background="red"; void(0);
Obviously you can use any color. Here's for text color too.
document.body.style.background="cyan"; void(0);
You must have void(0) at the end to do this. So here's the full thing.
javascript: document.write("your text here!"); document.body.style.background="red"; document.body.style.color="cyan"; void(0);
Just put that in the url and it should work! If not, contact me and I can help. Don't waste your time getting someone else to create a QR code when you can do it now, instantly!
Good luck!
-Anthony