You'd need to change the collation of that filed to utf8_general_ci. Then add the following line to your PHP code before all insert/fetch operation to the DB - better to be used under mysql_select_db() statement.
PHP Code:
mysql_query("set names 'utf8'");