Can anyone please tell what other characters need to be converted before loading data into webview.
view.loadDataWithBaseURL ("data:", htmlString, "text / html", "utf-8", htmlString);
Try it ("data://", htmlString, "text/html", "utf-8", null) .
("data://", htmlString, "text/html", "utf-8", null)
This should load, although the behavior of the Back button may be incorrect.