175

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?

dda
  • 6,030
  • 2
  • 25
  • 34
user4951
  • 32,206
  • 53
  • 172
  • 282

6 Answers6

259

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.

Mark Tolonen
  • 166,664
  • 26
  • 169
  • 251
  • 2
    These links contain some more info like HTML entities for these four characters: http://www.fileformat.info/info/unicode/char/25cf/ http://www.fileformat.info/info/unicode/char/26ab/ http://www.fileformat.info/info/unicode/char/2b24/ http://www.fileformat.info/info/unicode/char/1f311/ – Chiara Coetzee Aug 30 '13 at 08:12
  • 2
    Beware of semantics under various fonts (if that is beyond your control on receivers device): A circle will (should) always be a circle in any font. A bullet might be a square or even a brush stroke depending on font family... there's certainly even more leeway for interpretation of „new moon“... – Frank N Jan 17 '17 at 08:58
  • 2
    It looks like another inherited thing: the Medium ⚫ is larger than the Large ⬤! Came here on an attempt to find something larger than the Large Circle and what a surprise - it turned out to be the Medium Circle! =) Thank you, Mark! – Mar May 03 '19 at 18:05
  • 1
    @Mar This depends on your environment. E.g. in Windows 10's Notepad, Large Circle is bigger than Medium. But not in Chrome on the same OS. – bjornte Dec 06 '19 at 10:17
  • remember to write it like "\u2B24" in your strings – shieldgenerator7 Nov 30 '21 at 06:21
187

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
wovano
  • 4,543
  • 5
  • 22
  • 49
Matas Vaitkevicius
  • 58,075
  • 31
  • 238
  • 265
31

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>
Pang
  • 9,564
  • 146
  • 81
  • 122
Megamind Saiko
  • 659
  • 7
  • 13
22

You can search for “bullet” when using e.g. BabelPad (which has a Character Map where you can search by character name), but you will hardly find anything larger than U+2022 BULLET (though the size depends on font). Searching for “circle” finds many characters, too many, as the string appears in so many names. The largest simple circle is probably U+25CF BLACK CIRCLE “●”. If it’s too large U+26AB MEDIUM BLACK CIRCLE “⚫” might be suitable.

Beware that few fonts contain these characters.

A new problem has emerged with characters like MEDIUM BLACK CIRCLE, a problem that you may well see above. As noted in a comment, this character may look (much) larger than BLACK CIRCLE. The reason is that it may be rendered in “emoji style” as opposite to “text style”; this is explicitly mentioned in an annotation for the character in the Unicode Standard. In principle, you can use a Variation Selector (VS15 or VS16) character after the character to specify the style, but in practice it probably does not work. An explicit selection of font, e.g. Segoe UI Symbol (instead of Segoe UI Emoji) tends to be more successful.

Jukka K. Korpela
  • 195,524
  • 37
  • 270
  • 390
  • 1
    Note that on many systems the _Medium Black Circle Emoji_ (⚫) is actually larger than the _Black Circle_ (●). – wovano Oct 03 '21 at 10:00
3

If you are on Windows (Any Version)

Go to start -> then search character map

that's where you will find 1000s of characters with their Unicode in the advance view you can get more options that you can use for different encoding symbols.

Vinay Verma
  • 877
  • 8
  • 15
0

Besides the already mentioned official Unicode site (which I personally find difficult to use), I frequently use the following websites to search for Unicode characters:

All three sites contain basic information about each character (such as Unicode codepoint, several encodings and HTML entities, different names for the character, Unicode version, etc.). They also have a search function that allows you to search by character name or number.

The first one also shows how to use the character in C/C++/Java or Python source code, and has a test page for browser support of each character.

The second one has a nice "copy" button that allows you to directly copy the Unicode character to clipboard, which may be convenient.

wovano
  • 4,543
  • 5
  • 22
  • 49