mhtamun
mhtamun

Reputation: 75

How to input text other than english, like bangla or arabic in reactjs?

I am creating a an application I need to input multilingual text through form to store in my DB. At this point I am getting '?????' question signs if I input any other than English language.

Upvotes: 0

Views: 630

Answers (1)

I think that it is problem of your database encoding. If you use the mysql, database's charset must be utf8mb4.

Upvotes: 1

Related Questions