vote up 2 vote down star
1

I have a requirement where a client will supply a file in encoding ANSI, but my system can only successfully read a file in UNICODE. So how do I tackle this issue? I know when I "save as" the file into as UNICODE encoded the file gets picked up. It's difficult to make the client comply with our request. So can I have any batch program for this folder to convert this file into UNICODE and then pick up?

flag
When you say 'Unicode', do you mean UTF8, UTF16, UTF32, or some other representation? And how will you spot the source code set when it isn't Unicode? Which platform are you on? – Jonathan Leffler Mar 8 '09 at 12:11
Most people think UTF-32 = Unicode. I blame MS and their "Save As" options for this idea being so prevalent among the masses. Sad to see a developer (who ought to know better) sharing it. – Joe Pineda Mar 8 '09 at 14:02
MS uses mostly UCS-2, not UTF-32. – flodin Mar 8 '09 at 14:09
Oh, that's right!! UCS-2 = UTF-16, this is the encoding MS incorrectly refers to as "Unicode" in their "Save As" options, I stand corrected (sorry). – Joe Pineda Mar 8 '09 at 14:16
1  
No! UCS-2 is NOT the same as UTF-16. UTF-16 is a superset of UCS2 which allows for non BMP characters encoding (using surrogate pairs). Windows uses UTF-16 – Serge - appTranslator Mar 8 '09 at 17:00

5 Answers

vote up 11 vote down

iconv can do that:

Usage: iconv [OPTION...] [FILE...]
Convert encoding of given files from one encoding to another.

 Input/Output format specification:
  -f, --from-code=NAME       encoding of original text
  -t, --to-code=NAME         encoding for output

 Information:
  -l, --list                 list all known coded character sets

 Output control:
  -c                         omit invalid characters from output
  -o, --output=FILE          output file
  -s, --silent               suppress warnings
      --verbose              print progress information

  -?, --help                 Give this help list
      --usage                Give a short usage message
  -V, --version              Print program version

Mandatory or optional arguments to long options are also mandatory or optional
for any corresponding short options.

For bug reporting instructions, please see:
<http://www.gnu.org/software/libc/bugs.html>.
link|flag
vote up 6 vote down

Neither ANSI nor Unicode are encodings.You'll have to know the ANSI codepage of the input file and the Unicode encoding (UTF8 or UTF16 - LE or BE) before you can use one of the suggested tools (such as iconv)

link|flag
Wish I could upvote this more. For most Windows users, "Unicode" means UTF32. Most western European languages use Latin1 codepage, so most people assume that's "ANSI" encoding (again, I blame MS for their word usage in their "Save As" options). – Joe Pineda Mar 8 '09 at 14:08
We could add that looking into Control Panel->Regional Settings->Advanced Options will show which ANSI code-pages are installed and used. – Joe Pineda Mar 8 '09 at 14:14
On Windows systems, "Unicode" usually means UTF-16. – Alan Moore Mar 9 '09 at 5:59
vote up 4 vote down

recode could do the job.

link|flag
vote up 3 vote down

You can also easily convert encodings in python:

inf = open("infile.txt")
data = inf.read().decode("latin1")
inf.close()

outf = open("outfile.txt", "w")
outf.write(data.encode("utf-8"))
outf.close()
link|flag
vote up 1 vote down

Here's a Powershell solution

$lines = gc "pathToFile"
$lines | out-file -enconding Unicode
link|flag

Your Answer

Get an OpenID
or
never shown

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