Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Text-security/List style type disc character

Tags:

html

css

unicode

This applies to <li> with list-style-type: disc, but it also applies to -webkit-text-security. I need the character used as this disc. It does not seem to be &bull; (\u2022) since that is a different size. You can see this easily with:

<ul><li>&bull;</li></ul>

Compare the two characters.

Is there an html special character for the list/text-security disc?

like image 689
Explosion Pills Avatar asked Feb 26 '26 13:02

Explosion Pills


1 Answers

If i undestood it right you are looking for the "disc" mark symbol code?

What I found was: &#9679;

Source: http://brucejohnson.ca/SpecialCharacters.html

like image 138
Jacob Avatar answered Mar 01 '26 04:03

Jacob