use special characters in strings.xml to load in WebView
android, android-layout, android-view, android-webview
Solution
Check this list of special characters and how to encode in html.
<string name="abc">à</string>
<string name="abc">è</string>
Problem
I am using `WebView` to display the String resource. Here is the code- ``` <string name="abc">à</string> <string name="abcd">è</string> ``` When i load this in my `webView` it displays some garbage values. How to display this special characters in a `WebView`??