I have some French codepoints that i would like to decode to utf-8 on a Linux System.
The content of my file is (little example):
Lemari%C3%A9%20
Which decoded should be: Lemarié
I read that iconv is a great tool for achieving this but i dont know what i should use as -f
argument, because the file content is encoded, so am only trying with the -t
option without success:
iconv -t UTF8 test.csv
Any advice?