I\'m loading some data, containing latin-1 characters, in a WebView using
String uri = Uri.encode(html); webview.loadData(uri, \"text/html\", \"ISO-8859-1\")
I have display © 2011 and it was displaying ©.
With the below code i have achieved displaying correct value © 2011
webViewContent.loadDataWithBaseURL(null, html, "text/html", "utf-8", null);