[Answered ]-Store data in hindi and other languages in django model

2👍

The problem is with encoding the field.Use utf8_general_ci which is international encoding standard which supports various symbol and languages.Go to your database,if your using MySQL(phpmyadmin) change collation to utf8_general_ci for that field.

This will fix the error.

Leave a comment