Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the fastest, easiest tool or method to convert text files between character sets?

Specifically, I need to convert from UTF-8 to ISO-8859-15 and vice versa.

Everything goes: one-liners in your favorite scripting language, command-line tools or other utilities for OS, web sites, etc.

Best solutions so far:

On Linux/UNIX/OS X/cygwin:

  • Gnu iconv suggested by Troels Arvin is best used as a filter. It seems to be universally available. Example:

    $ iconv -f UTF-8 -t ISO-8859-15 in.txt > out.txt

    As pointed out by Ben, there is an online converter using iconv.

  • Gnu recode (manual) suggested by Cheekysoft will convert one or several files in-place. Example:

    $ recode UTF8..ISO-8859-15 in.txt
    This one uses shorter aliases:
    $ recode utf8..l9 in.txt

    Recode also supports surfaces which can be used to convert between different line ending types and encodings:

    Convert newlines from LF (Unix) to CR-LF (Dos):
    $ recode ../CR-LF in.txt

    Base64 encode file:
    $ recode ../Base64 in.txt     

    You can also combine them.

    Convert a Base64 encoded UTF8 file with Unix line endings to Base64 encoded Latin 1 file with Dos line endings:
    $ recode utf8/Base64..l1/CR-LF/Base64 file.txt

On Windows with Powershell (Jay Bazuzi):

  • PS C:\> gc -en utf8 in.txt | Out-File -en ascii out.txt

    (No ISO-8859-15 support though; it says that supported charsets are unicode, utf7, utf8, utf32, ascii, bigendianunicode, default, and oem.)

share|improve this question

10 Answers

Stand-alone utility approach:

iconv -f UTF-8 -t ISO-8859-1 in.txt > out.txt

f: from
t: to

share|improve this answer
I found this the best one if it's available, only it's UTF-8 and ISO-8859-1 (names without dashes wouldn't work for me) – Antti Sykäri Sep 16 '08 at 11:43
1  
Antti Sykäri: There must be something wrong with your iconv. The non-dash versions are even used in the examples in the manual page for iconv. – Troels Arvin Sep 17 '08 at 21:54
1  
For anyone else who's getting tripped up by the non-dash versions being unavailable, it looks like OSX (and possibly all BSD) versions of iconv don't support the non-dash aliases for the various UTF-* encodings. iconv -l | grep UTF will tell you all the UTF-related encodings that your copy of iconv does support. – CoreDumpError May 2 '12 at 19:10

Under Linux you can use the very powerful recode command to try and convert between the different charsets as well as any line ending issues. recode -l will show you all of the formats and encodings that the tool can convert between. It is likely to be a VERY long list.

share|improve this answer

Ooh, can I use PowerShell?

Get-Content -Encoding UTF8 FILE-UTF8.TXT | Out-File -Encoding UTF7 FILE-UTF7.TXT

The shortest version, if you can assume that the input BOM is correct:

gc FILE.TXT | Out-File -en utf7 file-utf7.txt
share|improve this answer
Here's a shorter version that works better. gc .\file-utf8.txt | sc -en utf7 .\file-utf7.txt – Larry Battle Jul 15 '12 at 6:16
@LarryBattle: How does Set-Content work better than Out-File? – Jay Bazuzi Jul 15 '12 at 19:30
...oh. I guess they're nearly the same thing. I had trouble running your example because I was assuming that both versions were using the same file-utf8.txt file for input since they both had the same output file as file-utf7.txt. – Larry Battle Jul 15 '12 at 21:24

iconv(1)

iconv -f FROM-ENCODING -t TO-ENCODING file.txt

Also there are iconv-based tools in many languages.

share|improve this answer

PHP iconv()

iconv("UTF-8", "ISO-8859-15", $input);

share|improve this answer

On Windows I was able to use Notepad++ to do the conversion from ISO-8859-1 to UTF-8. Click "Encoding" and then "Convert to UTF-8".

share|improve this answer

If it's only a few files you might want to give the iconv online converter a try...

share|improve this answer

I've put this into .bashrc:

utf8()
{
    iconv -f ISO-8859-1 -t UTF-8 $1 > $1.tmp
    rm $1
    mv $1.tmp $1
}

..to be able to convert files like so:

utf8 MyClass.java
share|improve this answer

Yudit editor supports and converts between many different text encodings, runs on linux, windows, mac, etc.

share|improve this answer

protected by chown Sep 28 '12 at 23:21

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.