EDIT

How to deal with special characters in CSV

CSV Edit
What are special characters?

A special character is any character that is not alphabetic or numeric. Special characters include (but are not limited to!):

Punctuation marks
Mathematical symbols
Emoji
Trademark, copyright, and other legal symbols
Foreign-language characters and logograms
These are all special characters
So, if you're working with CSV, what special characters are supported?

There are no restrictions on what characters you can use in a CSV file. The limitation is the way the file is encoded.

Here is an article on choosing the right encoding, UTF-8 is the recommended encoding for the file because it supports almost every possible character. If you don't choose UTF-8, chances are you'll run into the "??????" error or you will see in your cells something similar to "清崎" or "Фома".

Problems with special characters and encoding usually occur when you open the CSV in another program (i.e., not a regular text editor). When you see lots of question marks instead of your data software informs you that it has no idea which characters to display to you.

For example, if you try to open CSV in Excel, you will likely see the "??????" or other unrecognized data. To avoid that, you need to import CSV files into Excel using the special wizard to display data correctly. Go to "Data" tab and select "Get External Data". Choose "From Text".
The very first step in the wizard gives you a drop-down list to select the "file origin". This is where you can specify UTF-8!
Google Sheets supports UTF-8 by default. However, you must remember to use this encoding when saving (exporting) data to a CSV file.

If you take care to encode your file correctly, you won't encounter difficulties with special characters in your data.