I've been asked to do text analysis and am having trouble with encoding, does anyone know how I can translate these strings directly?
Example of how the file is appearing:
vocês dizerem que não!!! Até quando
Another example:
â¤ï¸(...) Comilanças é amigo secreto na casa clean!ðŸŽ
I've tried using this function:
stringi::stri_enc_detect(dados$text)
and I got this output:
[[1]]$Encoding
[1] "UTF-8" "windows-1252" "windows-1250" "UTF-16BE" "UTF-16LE" "Shift_JIS" "windows-1254"
[8] "IBM420_ltr"
[[1]]$Language
[1] "" "pt" "cs" "" "" "ja" "tr" "ar"
[[1]]$Confidence
[1] 1.00 0.63 0.28 0.10 0.10 0.10 0.02 0.01
If anyone can help, I'll be grateful!