<tutorialjinni.com/>

HTML Bullet Code

HTML Code &#8226;
CSS3 Code \2022
HTML Entity &bull;
Hex Code &#x2022;
UNICODE U+02022
URL %26%238226%3B
Category HTML Punctuation Marks Symbols Code

Usage Examples


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