(view source code of 2unicode.ps as plain text)
# Convert any text file to Unicode
param( [string] $infile = $(throw "Please specify a filename.") )
$outfile = "$infile.unicode"
get-content -Path $infile | out-file $outfile -encoding unicode
page last modified: 2024-04-16; loaded in 0.0073 seconds