UTF-16 to UTF-8 conversion (for scripting in Windows) - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T17:22:12Zhttp://stackoverflow.com/feeds/question/265370http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/265370/utf-16-to-utf-8-conversion-for-scripting-in-windows0UTF-16 to UTF-8 conversion (for scripting in Windows)Grzenio2008-11-05T14:54:55Z2008-11-06T15:59:53Z
<p>Hi, what is the best way to convert a UTF-16 files to UTF-8? I need to use this in a cmd script.</p>
http://stackoverflow.com/questions/265370/utf-16-to-utf-8-conversion-for-scripting-in-windows/265381#2653811Answer by Tor Haugen for UTF-16 to UTF-8 conversion (for scripting in Windows)Tor Haugen2008-11-05T14:58:42Z2008-11-05T14:58:42Z<p>Certainly, the <strong>easiest</strong> way is to load the script into notepad, then save it again with the UTF-8 encoding. It's an option in the Save As dialog box..</p>
http://stackoverflow.com/questions/265370/utf-16-to-utf-8-conversion-for-scripting-in-windows/265412#2654120Answer by VonC for UTF-16 to UTF-8 conversion (for scripting in Windows)VonC2008-11-05T15:07:49Z2008-11-05T15:14:32Z<p>If you have a ruby distribution installed, you can call a ruby script taking care of the conversion:</p>
<p><a href="http://www.websideattractions.com/2007/10/24/ruby-script-to-convert-files-character-encoding/" rel="nofollow">Ruby script to convert file(s) character encoding</a></p>
<p>In the same spirit: <a href="http://www.perlmonks.org/?node_id=719216" rel="nofollow">Perl script</a></p>
<p>In the absence of script support, you would have to code it like this <a href="http://www.codeproject.com/KB/string/utfConvert.aspx" rel="nofollow">C++ source</a> using a WideCharToMultiByte() call...</p>
http://stackoverflow.com/questions/265370/utf-16-to-utf-8-conversion-for-scripting-in-windows/265444#2654442Answer by Jon Skeet for UTF-16 to UTF-8 conversion (for scripting in Windows)Jon Skeet2008-11-05T15:17:41Z2008-11-05T17:25:43Z<p>An alternative to Ruby would be to write a small .NET program in C# (.NET 1.0 would be fine, although 2.0 would be simpler :) - it's a pretty trivial bit of code. Were you hoping to do it without any other applications at all? If you want a bit of code to do it, add a comment and I'll fill in the answer...</p>
<p>EDIT:
Okay, this is without any kind of error checking, but...</p>
<pre><code>using System;
using System.IO;
using System.Text;
class FileConverter
{
static void Main(string[] args)
{
string inputFile = args[0];
string outputFile = args[1];
using (StreamReader reader = new StreamReader(inputFile, Encoding.Unicode))
{
using (StreamWriter writer = new StreamWriter(outputFile, false, Encoding.UTF8))
{
CopyContents(reader, writer);
}
}
}
static void CopyContents(TextReader input, TextWriter output)
{
char[] buffer = new char[8192];
int len;
while ((len = input.Read(buffer, 0, buffer.Length)) != 0)
{
output.Write(buffer, 0, len);
}
}
}
</code></pre>
http://stackoverflow.com/questions/265370/utf-16-to-utf-8-conversion-for-scripting-in-windows/265852#2658523Answer by PhiLho for UTF-16 to UTF-8 conversion (for scripting in Windows)PhiLho2008-11-05T16:59:49Z2008-11-05T16:59:49Z<p>Perhaps with <a href="http://www.fileformat.info/tip/linux/iconv.htm" rel="nofollow" title="Using iconv to change character encodings">iconv</a>?</p>
http://stackoverflow.com/questions/265370/utf-16-to-utf-8-conversion-for-scripting-in-windows/266279#2662794Answer by Kaarel for UTF-16 to UTF-8 conversion (for scripting in Windows)Kaarel2008-11-05T19:28:22Z2008-11-05T19:28:22Z<p>There is a GNU tool <a href="http://www.gnu.org/software/recode/recode.html" rel="nofollow">recode</a> which you can also use on Windows.
E.g.</p>
<pre><code>recode utf16..utf8 text.txt
</code></pre>