HTML Entity for Black Circle with White Dot Right (⚈)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2688

What You'll Learn

How to display Black Circle with White Dot Right (⚈) in HTML and CSS. This character is U+2688 in the Miscellaneous Symbols block (U+2600–U+26FF), added in Unicode 3.2. It shows a black circle with a white dot on the right. In Go, ad hoc notation uses it to mark positions where a black stone is worth a point.

There is no named HTML entity for U+2688. Use ⚈ or ⚈ in markup, or \2688 in stylesheet content. The symbol also suits UI bullets, step indicators, diagrams, and emphasis markers. Pair decorative glyphs with visible text or aria-label when the symbol conveys state.

⚡ Quick Reference — Black Circle Dot Right

Unicode U+2688

Miscellaneous Symbols

Hex Code ⚈

Hexadecimal reference

HTML Code ⚈

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2688
Hex code       ⚈
HTML code      ⚈
Named entity   —
CSS code       \2688
1

Complete HTML Example

This example shows U+2688 using hexadecimal and decimal character references, plus a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2688";
  }
 </style>
</head>
<body>
<p>Black Circle with White Dot Right using Hexa Decimal: &#x2688;</p>
<p>Black Circle with White Dot Right using HTML Code: &#9864;</p>
<p id="point">Black Circle with White Dot Right using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2688 is widely supported; piece artwork varies by typeface:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the glyph at different sizes and beside related circle-dot symbols (font-dependent):

Large glyph
Inline list marker ⚈ Current step · ⚈ Next action
Related (U+2686–U+2689) ⚆ ⚇ ⚈ ⚉
Caption U+2688 is the dot-on-right variant in the circle-with-dot series.
Monospace refs &#x2688; &#9864; \2688

🧠 How It Works

1

Hexadecimal Code

&#x2688; references code point U+2688 using hex digits 2688 after the #x prefix.

HTML markup
2

Decimal HTML Code

&#9864; is the decimal equivalent (9864) for the same Black Circle with White Dot Right character.

HTML markup
3

CSS Entity

\2688 is the CSS escape for U+2688, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity for U+2688.

Use Cases

The Black Circle with White Dot Right (⚈) is commonly used for:

⚈ Go notation

Mark board points where a black stone is worth a point in diagrams and reviews.

🎨 UI design

Custom bullets, nav indicators, and emphasis in interfaces.

📊 Diagrams

Step indicators, flowcharts, and directional markers in documentation.

📋 Progress UI

Checklists, completion steps, and status markers.

⭐ Highlights

Feature callouts, ratings, and “current item” affordances.

📄 Print CSS

Printable guides and handouts from HTML without image assets.

♿ Accessibility

Pair ⚈ with text or ARIA (e.g. “Current step”) when it conveys state.

💡 Best Practices

Do

  • Use hex or decimal consistently—there is no named entity for U+2688
  • Use hex or decimal consistently—there is no named entity for U+2688
  • Pair ⚈ with clear text when it marks a step or status
  • Scale with font-size so the glyph fits your layout
  • Use \2688 only inside CSS content, not inside HTML text nodes
  • Add aria-label or title (e.g. “Selected”) for screen readers

Don’t

  • Confuse U+2688 with sibling circle-dot code points U+2686–U+2689
  • Rely on ⚈ alone to communicate meaning in critical UI
  • Assume every font renders Miscellaneous Symbols crisply at small sizes
  • Ship stateful UI using only dingbats without accessible fallbacks
  • Mix CSS escapes into HTML text nodes (use numeric refs in markup)

Key Takeaways

1

Two numeric references render the same glyph

&#x2688; &#9864;
2

CSS content escape

\2688
3

U+2688 is dot on the right; siblings U+2686–U+2689 vary dot position

4

Part of Miscellaneous Symbols (U+2600–U+26FF); common in Go and UI markup

5

Pair glyphs with text or ARIA when the symbol conveys interactive state

❓ Frequently Asked Questions

Use &#x2688; (hex), &#9864; (decimal), or \2688 in CSS content. There is no named entity; all valid methods render ⚈.
U+2688 (hex 2688, decimal 9864). Miscellaneous Symbols. Unicode name BLACK CIRCLE WITH WHITE DOT RIGHT.
In Go game notation, UI design, bullet points, diagrams, step indicators, ratings, progress displays, and any interface needing a directional or emphasis marker.
Numeric references belong in HTML. The \2688 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x2688;, &#9864;, or \2688 in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful