How can I decode Base 64 characters like <e9>
(é) or <b0>
(°) in a table that was saved with write.table
without the UTF-8
option?
Apologies if the answer is obvious, but the R documentation pages mention nothing else than enc2utf8()
(which does not work here).
Note: if there is no solution, I know I can either gsub()
the whole thing, but that would be long and messy, or I can generate the data again, but that would take some real time (crawler data).