Article
Using iconv to change character encoding in Linux
· 1 min read
You can use “iconv” to convert file encoding
iconv -f old-encoding -t new-encoding file.txt > newfile.txt
To check all kind of encodings:
iconv -l | grep UTF
Rodolfo
· 1 min read
You can use “iconv” to convert file encoding
iconv -f old-encoding -t new-encoding file.txt > newfile.txt
To check all kind of encodings:
iconv -l | grep UTF
Rodolfo