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">&#224;</string>
<string name="abc">&#232;</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`??

Original source