In my .sql file is like as below,
INSERT INTO `BtoB` (`ID`,`cWord`,`cMean`) VALUES (1, 'A', 'Av`¨¯^i| eY©gvjvi cÖ_g eY©|');
INSERT INTO `BtoB` (`ID`,`cWord`,`cMean`) VALUES (2, 'A2', 'bT&Zrcyi“l mgv‡m bT& ¯’v‡b A nq|');
INSERT INTO `BtoB` (`ID`,`cWord`,`cMean`) VALUES (3, 'A', 'Afve, AmyL, A‡eva, AKvj, AeªvþY, Aag©|');
In manually, when I have converted it the 'cMean' column value then it would be like as below,
I don't like to ASCII string in the 'cMean' column value. I would like to 'cMean' column value should be Bangla string. Already I have assigned the database table 'cMean' column collection type is 'utf8_general_ci'. I would like to create a method or process in php or anything automatic system to convert the ASCII string to Bangla string that why 'cMean' column value must be store is as a bangla string. I have used MySQL database.
Now how can I store 'cMean' column data value is as Bangla string in the table?