This is because of the collation set on the column (/table /database).
MySQL can set the collation on a per-column basis (although it's normally sensible to have it the same across your whole database).
Check the list of collations on the MySQL documentation, and apply one which does what you want.
Bear in mind that the collation is also affected by charset - so ensure that you're using the right encoding too.
Mark