I’ve created a table lets say Example. And insert values, as follows:
insert into Example (column1)
values ('оарвыларфдл');
Then I try to select the data from table and the output is: ??????????
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ve messed up your character sets somewhere: the table, the connection, the output, or some combination of these is using an incorrect character set – so make sure they all match and use a character set that can represent your characters – UTF-8 is generally the best choice, because it can represent everything.
It is not possible to be more exact than this, because you have not provided any information about which character sets each of those things are using.