<tutorialjinni.com/>

HTML Acute Accent Code

HTML Code &#180; ´
CSS3 Code \00B4
HTML Entity &acute;
Hex Code &#xb4;
UNICODE U+000B4
URL %26%23180%3B
Category HTML Punctuation Marks Symbols Code

Usage Examples


To use Acute Accent in Cascading Style Sheets or CSS file use the following code.
// css3 example usage
<style>
    span {
      content: "\00B4";
    }
</style>
To use Acute Accent in in-line HTML code you can use it "as it is" but, it is recommend that Acute Accent should be used like the following example code. Because it help in assigning special CSS to it.
    <!-- html usage -->
    <i>&#180;</i>
In order to send Acute Accent via a HTML form or via a query string it should be properly encoded. Following is the URL encoded format of Acute Accent. Do not forget to Decode it on the server side.
    https: //www.tutorialjinni.com/html-symbols-entity-codes.html? html-acute-accent-code=%26%23180%3B