I would like to understand this problem i have been having. Im parsing an html source page and displaying the content i want in a list view in android. I parse the page using this command.
doc = Jsoup.connect(myURL).get();
Symbols such as é or “ ” show up as �. I understand they are not being recognized by the encoding mechanism but is it because of jsoup or android? Android default encoding im using is Utf-8 should it not support that? If it should not how and what should i change it to? Thank you for you help.