| HTML Lowercase a with Grave Code | ||
| HTML Code | à | à | 
| CSS3 Code | \00E0 | |
| HTML Entity | à | |
| Hex Code | à | |
| UNICODE | U+000E0 | |
| URL | %26%23224%3B | |
| Category | HTML Letters Symbols Code | |
| Usage ExamplesTo use Lowercase a with Grave in Cascading Style Sheets or CSS file use the following code. 
// css3 example usage
<style>
    span {
      content: "\00E0";
    }
</style>To use Lowercase a with Grave in in-line HTML code you can use it "as it is" but, it is recommend
                that Lowercase a with Grave should be used like the following example code. Because it help in assigning special CSS to it.
    <!-- html usage -->
    <i>à</i>In order to send Lowercase a with Grave via a HTML form or via a query string it should be properly encoded.
                Following is the URL encoded format of Lowercase a with Grave. Do not forget to Decode it on the server side.
    https: //www.tutorialjinni.com/html-symbols-entity-codes.html? html-lowercase-a-with-grave-code=%26%23224%3B | ||