i have installed WAMP in my laptop & i have created a mysql table
CREATE TABLE `users` (
`uname` varchar(20) NOT NULL,
`pass` varchar(20) DEFAULT NULL,
PRIMARY KEY (`uname`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
the column property of the table is shown here
when i insert a hindi unicode using
SET NAMES utf8;
insert into users(uname, pass) values ('सूरज','abc');
the content of the table is shown here
the unicode word सूरज does not shown properly. where i have done wrong ?