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