i am trying to display html in webview but problem is it is showing euro sign instead of ‘
when i look at html by debugging it shows everything fine but not in webview.
any one guide me what is the solution to this problem?
my code

_webView.getSettings().setJavaScriptEnabled(true);
_webView.getSettings().setPluginsEnabled(true);
_webView.loadData(_urlfromSummarie, "text/html", "UTF-8");
any help would be appreciated.
You need to add a declaration in the document itself, for example:
Also, LoadDataWithUrl is generally better than loadData, it doesn’t require URLEncoder.encode (slow), and doesn’t keep a long data url in the webview’s history memory.