HTML Lowercase c with Cedilla Code |
||
HTML Code | ç | ç |
CSS3 Code | \00E7 | |
HTML Entity | ç | |
Hex Code | ç | |
UNICODE | U+000E7 | |
URL | %26%23231%3B | |
Category | HTML Letters Symbols Code | |
Usage ExamplesTo use Lowercase c with Cedilla in Cascading Style Sheets or CSS file use the following code.
// css3 example usage
<style>
span {
content: "\00E7";
}
</style>
To use Lowercase c with Cedilla in in-line HTML code you can use it "as it is" but, it is recommend
that Lowercase c with Cedilla 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 c with Cedilla via a HTML form or via a query string it should be properly encoded.
Following is the URL encoded format of Lowercase c with Cedilla. Do not forget to Decode it on the server side.
https: //www.tutorialjinni.com/html-symbols-entity-codes.html? html-lowercase-c-with-cedilla-code=%26%23231%3B
|