Can I use echo to generate an UTF-8 text file? For example if I want to generate a file that contains the character "ę"
echo "abcd ę" > out.txt
(the batch file is encoded with UTF-8)
the result is an ANSI encoded file and the "ę" character is transformed into "ê". How can I convince "echo" to generate an UTF-8 file?
If it's not possible, then can I change the encoding of the text file after creating it? Is there any tool in the gnuwin32 package that can help me to change the encoding?
thanks
abcd ęas viewed by Notepad, although in the command prompt window it looked likeabcd ─Ö. I didn't get anêat all. – Neil Aug 14 '12 at 23:47