What would be the Unicode character for big bullet in the middle of the character?

前端 未结 5 804
南笙
南笙 2020-12-07 13:59

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/

相关标签:
5条回答
  • 2020-12-07 14:02

    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.

    0 讨论(0)
  • 2020-12-07 14:05

    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>

    0 讨论(0)
  • 2020-12-07 14:16

    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.

    0 讨论(0)
  • 2020-12-07 14:26

    Here's full list of black dotlikes from unicode

    ● - &#9679; - Black Circle
    ⏺ - &#9210; - Black Circle for Record
    ⚫ - &#9899; - Medium Black Circle
    ⬤ - &#11044; - Black Large Circle
    ⧭ - &#10733; - Black Circle with Down Arrow
    🞄 - &#128900; - Black Slightly Small Circle
    • - &#8226; - Bullet (also • - &#149; - Message Waiting)
    ∙ - &#8729; - Bullet Operator
    ⋅ - &#8901; - Dot Operator (also · - &#183; - Middle Dot)
    🌑 - &#127761; - New Moon Symbol

    0 讨论(0)
  • 2020-12-07 14:29

    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:

                                                                        
    0 讨论(0)
提交回复
热议问题