HTML Entity for Black Circle with Two White Dots (⚉)

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

What You'll Learn

How to display Black Circle with Two White Dots (⚉) in HTML and CSS. This character is U+2689 in the Miscellaneous Symbols block (U+2600–U+26FF), added in Unicode 3.2, in the Go markers subrange (U+2686–U+2689). It shows a black circle with two white dots, used in Go to mark board positions.

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

⚡ Quick Reference — Black Circle Two Dots

Unicode U+2689

Miscellaneous Symbols

Hex Code ⚉

Hexadecimal reference

HTML Code ⚉

Decimal reference

Named Entity

None (use numeric refs)

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

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2689";
  }
 </style>
</head>
<body>
<p>Black Circle with Two White Dots using Hexa Decimal: &#x2689;</p>
<p>Black Circle with Two White Dots using HTML Code: &#9865;</p>
<p id="point">Black Circle with Two White Dots using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2689 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+2689 is the two-dots variant; U+2688 is dot-on-right in the same Go marker series.
Monospace refs &#x2689; &#9865; \2689

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#9865; is the decimal equivalent (9865) for the same Black Circle with Two White Dots character.

HTML markup
3

CSS Entity

\2689 is the CSS escape for U+2689, 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+2689.

Use Cases

The Black Circle with Two White Dots (⚉) is commonly used for:

⚉ Go notation

Mark board positions in Go diagrams and analysis (Go markers subblock).

🎨 UI design

Custom bullets, dual-state indicators, and paired emphasis in interfaces.

📊 Diagrams

Step indicators, paired elements, and visual markers in flowcharts.

📋 Progress UI

Checklists, progress steps, and status markers with dual emphasis.

⭐ Highlights

Feature callouts, ratings, and paired-item indicators.

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

Don’t

  • Confuse U+2689 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

&#x2689; &#9865;
2

CSS content escape

\2689
3

U+2689 has two white dots; U+2688 is dot-on-right in the same series

4

Go markers U+2686–U+2689 sit in Miscellaneous Symbols (U+2600–U+26FF)

5

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

❓ Frequently Asked Questions

Use &#x2689; (hex), &#9865; (decimal), or \2689 in CSS content. There is no named entity; all valid methods render ⚉.
U+2689 (hex 2689, decimal 9865). Miscellaneous Symbols, Go markers subblock. Unicode name BLACK CIRCLE WITH TWO WHITE DOTS.
In Go game notation, UI design, bullet points, diagrams, step indicators, dual-state markers, ratings, and any interface needing a paired or emphasis marker.
Numeric references belong in HTML. The \2689 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x2689;, &#9865;, or \2689 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