Converting xml from UTF-16 to UTF-8 using PowerShell - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T03:11:37Zhttp://stackoverflow.com/feeds/question/750449http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/750449/converting-xml-from-utf-16-to-utf-8-using-powershell4Converting xml from UTF-16 to UTF-8 using PowerShellDavid Gardiner2009-04-15T05:45:07Z2009-04-17T23:50:06Z
<p>What's the easiest way to convert XML from UTF16 to a UTF8 encoded file?</p>
http://stackoverflow.com/questions/750449/converting-xml-from-utf-16-to-utf-8-using-powershell/750453#7504535Answer by Ben Laan for Converting xml from UTF-16 to UTF-8 using PowerShellBen Laan2009-04-15T05:49:54Z2009-04-17T23:50:06Z<p>This may not be the most optimal, but it works. Simply load the xml and push it back out to a file. the xml heading is lost though, so this has to be re-added.</p>
<pre><code>$files = get-ChildItem "*.xml"
foreach ( $file in $files )
{
[System.Xml.XmlDocument]$doc = new-object System.Xml.XmlDocument;
$doc.set_PreserveWhiteSpace( $true );
$doc.Load( $file );
$root = $doc.get_DocumentElement();
$xml = $root.get_outerXml();
$xml = "<?xml version=`"1.0`" encoding=`"utf-8`"?>" + $xml
$newFile = $file.Name + ".new"
Set-Content -Encoding UTF8 $newFile $xml;
}
</code></pre>