Convert UTF-16 encoded file to UTF-8
Answer:
iconv is what you need and is available on most Linux platforms.
# iconv -f UTF-16 -t UTF-8 text.txt
Related posts:
Post a Comment