I got irrecognizable characters sql server database

Databases
If no-english characters how as "??????" from your sql server database, you see the solution below:

1. Change your sql server database collation to correpsonding collation

2. When you update your insert statement, please add N befor it, like N'xxxx'
 
3. Set Data Type to nchar, nvarchar, ntext for Unicode support.