Converting xml from UTF-16 to UTF-8 using PowerShell - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T03:11:37Z http://stackoverflow.com/feeds/question/750449 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/750449/converting-xml-from-utf-16-to-utf-8-using-powershell 4 Converting xml from UTF-16 to UTF-8 using PowerShell David Gardiner 2009-04-15T05:45:07Z 2009-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#750453 5 Answer by Ben Laan for Converting xml from UTF-16 to UTF-8 using PowerShell Ben Laan 2009-04-15T05:49:54Z 2009-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 = "&lt;?xml version=`"1.0`" encoding=`"utf-8`"?&gt;" + $xml $newFile = $file.Name + ".new" Set-Content -Encoding UTF8 $newFile $xml; } </code></pre>