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