What would be the Unicode character for big bullet in the middle of the character?
I want something like
0x2022 8226 BULLET •
But bigger.
I can't even seem to find them at http://www.ssec.wisc.edu/~tomw/java/unicode.html
What should I search for? Dots? bullets?
Solution 1:
http://www.unicode.org is the place to look for symbol names.
● BLACK CIRCLE 25CF
⚫ MEDIUM BLACK CIRCLE 26AB
⬤ BLACK LARGE CIRCLE 2B24
or even:
🌑 NEW MOON SYMBOL 1F311
Good luck finding a font that supports them all. Only one shows up in Windows 7 with Chrome.
Solution 2:
Here's a full list of black dotlike characters from Unicode:
number | character | HTML entity | Description |
---|---|---|---|
U+00B7 | · | · |
Middle Dot |
U+25CF | ● | ● |
Black Circle |
U+23FA | ⏺ | ⏺ |
Black Circle for Record Emoji |
U+26AB | ⚫ | ⚫ |
Medium Black Circle Emoji |
U+2B24 | ⬤ | ⬤ |
Black Large Circle |
U+29ED | ⧭ | ⧭ |
Black Circle with Down Arrow |
U+1F784 | 🞄 | 🞄 |
Black Slightly Small Circle |
U+2022 | • | • |
Black Small Circle |
U+2219 | ∙ | ∙ |
Bullet Operator |
U+22C5 | ⋅ | ⋅ |
Dot Operator |
U+1F311 | 🌑 | 🌑 |
New Moon Symbol Emoji |
U+30FB | ・ | ・ |
Katakana Middle Dot |
Solution 3:
You can use a span with 50% border radius.
.mydot{
background: rgb(66, 183, 42);
border-radius: 50%;
display: inline-block;
height: 20px;
margin-left: 4px;
margin-right: 4px;
width: 20px;
}
<span class="mydot"></span>