1) First check your table if it encodes utf8 encoding with
select table_name,engine
from information_schema.tables
where table_schema = 'your_database'
2) Secondly, if it is not (otherwise skip the 3rd step), ALTER your table (utf8 character set encoding, so it will support a special character)
ALTER TABLE `name` CHARACTER SET utf8;
3) CHOOSE from your db using utf8 encoding
select * from your_table group by name collate utf8_general_ci