5168 shaares
38 private links
38 private links
Sometimes you need to convert from one encoding to another because your application can only read certain data encoded in a certain way. NIX systems (Linux and UNIX) comes with a command line program called iconv that can be used to convert from one text encoding to another easily.
iconv -c -f ASCII -t UTF-8 [FILE_NAME] > [NEW_FILE]