Linux: iconv ASCII text to UTF-8

3.5k Views Asked by At

I have a file which contains the letter ö. Except that it doesn't. When I open the file in gedit, I see:

\u00f6

I tried to convert the file, applying code that I found on other threads:

$ file blb.txt 
blb.txt: ASCII text
$ iconv -f ISO-8859-15 -t UTF-8 blb.txt > blb_tmp.txt
$ file blb_tmp.txt 
blb_tmp.txt: ASCII text

What am I missing?

EDIT

I found this solution:

echo -e "$(cat blb.txt)" > blb_tmp.txt
$ file blb_tmp.txt
blb_tmp.txt: UTF-8 Unicode text

The -e "enables interpretation of backslash escapes".

Still not sure why iconv didn't make it happen. I'm guessing it's something like "iconv only changes the encoding, it doesn't interpret". Not sure yet, what the difference is though. Why did the Unicode people make this world such a mess? :D

0

There are 0 best solutions below