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