I have a Turkish written text but I have some strange characters for example:
ý instead of ı, Ý instead of İ etc… I tried to convert encoding to iso 8859-9 but it didn’t help.
I have a Turkish written text but I have some strange characters for example:
Share
If you’re running a UNIX/Linux machine, try the following shell command:
It should output something like the snippet below, where
iso-8859-1is the acutal character set your system assumes:Now you can convert the file into some more flexible charset, like
UTF-8:The above snippet specifies both, the charset to convert
-from (which should equal the output of thefilecommand) as well as the charset to convert-to. The result of the conversion ofyourfile.txtis then stored inconverted.txt, which you should be able to open withgedit.If that doesn’t work, you may paste the output of the
filecommand, as well as some real line of your file, in the comment section…