Ansi to Unicode

Ansi to Unicode.

Description: An easy way to convert an ANSI encoded file to UNICODE is by running a TYPE command in a new instance of CMD.exe with option /U and piping the output into a new file.
The following command converts a text file named myfile.txt into the UNICODE encoded file named myunicodefile.txt.
Note that myfile.txt should be ANSI for this to work correctly.
Script:
1.
cmd /u /c type myfile.txt>myunicodefile.txt