I have some txt files containing greek characters, how can I read them @Ubuntu?
When I am opening one of the files I am getting these "Äåõôåñåýùí".
Here is a text file zipped and uploaded at rapidshare.
I have some txt files containing greek characters, how can I read them @Ubuntu?
When I am opening one of the files I am getting these "Äåõôåñåýùí".
Here is a text file zipped and uploaded at rapidshare.
Just to add that an easy way to see your files containing Greek and were saved by your friends in their Windows machines is to convert them to UTF-8 with the command:
iconv -f Windows-1253 -t utf-8 input.txt > output.txt
This will read input.txt
as Windows-1253 and will write it into output.txt
as UTF-8.
output.txt
will contain the correct UTF-8 representation and you will be able to open the file in e.g. Leafpad without further problems.
When opening with gedit, you can chose the encoding. Your file might be in iso-8859-7
(greek) or windows-1253
encoding. Maybe one of it will work.
If you get the chance in windows: while saving the file select utf-8
encoding. This is universal and should be readable on all platforms in all countries.