For some reason I was looking at my wordpress site and found that my database collation was set incorrectly. I have about 10 other word press sites and all of them are correct, but I had one stand out. I found that I had about 15 tables in my database with the incorrect collation as well. So to fix this, I did the following:
Database Level:
ALTER DATABASE CHARACTER SET utf8 COLLATE utf8_general_ci
Table Level (including the existing columns):
alter table convert to character set utf8 collate utf8_general_ci;