HTML Entity for White Circle Dot Right (⚆)

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

What You'll Learn

How to display White Circle with Dot Right (⚆) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2686 (WHITE CIRCLE WITH DOT RIGHT) in the Miscellaneous Symbols block (U+2600–U+26FF), in the Go markers subrange (U+2686–U+2689).

Render it with ⚆, ⚆, or CSS escape \2686. There is no named HTML entity. In Go notation it marks positions where a white stone is worth a point; it also suits flow diagrams, directional UI, and step indicators. Do not confuse ⚆ with sibling markers ⚇–⚉.

⚡ Quick Reference — White Circle Dot Right

Unicode U+2686

Miscellaneous Symbols (Go markers)

Hex Code ⚆

Hexadecimal reference

HTML Code ⚆

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2686
Hex code       ⚆
HTML code      ⚆
Named entity   (none)
CSS code       \2686
Meaning        White circle with dot on the right
Related        U+2687 = ⚇ (white circle two dots)
               U+2688 = ⚈ (black circle dot right)
               U+2689 = ⚉ (black circle two dots)
Block          Miscellaneous Symbols (U+2686–U+2689 Go markers)
1

Complete HTML Example

A simple example showing White Circle with Dot Right (⚆) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2686";
  }
 </style>
</head>
<body>
<p>White Circle Dot Right (hex): &#x2686;</p>
<p>White Circle Dot Right (decimal): &#9862;</p>
<p id="point">White Circle Dot Right (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+2686 is supported in modern browsers when the font includes Miscellaneous Symbols glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See White Circle with Dot Right (⚆) in context:

Large glyph
Step indicatorStep 1 ⚆ Step 2
Go markers (U+2686–U+2689)⚆ ⚇ ⚈ ⚉
Not the same as⚈ (U+2688, black circle dot right)
Numeric refs&#x2686; &#9862; \2686

🧠 How It Works

1

Hexadecimal Code

&#x2686; uses the Unicode hexadecimal value 2686 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9862; uses the decimal Unicode value 9862 to display the same character. A common method for symbol characters in HTML.

HTML markup
3

CSS Entity

\2686 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+2686 is the first Go-marker symbol in U+2686–U+2689. Not the same as ⚈ (black circle dot right).

Use Cases

White Circle with Dot Right (⚆) is commonly used in:

⚫ Go notation

Mark board positions and territory in Go/Weiqi content.

➡ Directional indicators

Rightward flow, navigation, and step progression.

📊 Flow diagrams

Process flows, workflows, and sequential diagrams.

🖥 UI navigation

Buttons and interactive elements guiding users forward.

🎨 Design elements

Logos, bullets, and distinctive directional symbols.

📚 Instructional content

Tutorials and guides indicating next steps.

🔬 Diagram notation

Technical docs and visual annotation systems.

💡 Best Practices

Do

  • Pair ⚆ with accessible text or aria-label when it conveys direction
  • Use numeric references when escaping is required
  • Pick one style (hex or decimal) per project for consistency
  • Use fonts that support Miscellaneous Symbols characters
  • Distinguish U+2686 from siblings U+2687–U+2689 in Go notation

Don’t

  • Confuse ⚆ (white circle dot right) with ⚈ (black circle dot right)
  • Mix entity styles randomly in one file
  • Use CSS escape \2686 inside HTML markup
  • Expect a named HTML entity—none exists for ⚆
  • Rely on the glyph alone without context in UI or diagrams

Key Takeaways

1

Type ⚆ directly, or use hex/decimal references

&#x2686; &#9862;
2

For CSS stylesheets, use the escape in the content property

\2686
3

Unicode U+2686 — WHITE CIRCLE WITH DOT RIGHT (Go markers)

4

Siblings U+2687–U+2689 vary dot count and circle color

❓ Frequently Asked Questions

Use &#x2686; (hex), &#9862; (decimal), or \2686 in CSS content. There is no named HTML entity. In UTF-8 you can also type ⚆ directly.
U+2686 (WHITE CIRCLE WITH DOT RIGHT). Go markers subrange U+2686–U+2689 in Miscellaneous Symbols. Hex 2686, decimal 9862.
In Go notation, flow diagrams, directional UI indicators, navigation elements, step markers, and creative design content that needs a rightward circle-dot glyph.
HTML entities (&#9862; or &#x2686;) go directly in markup. The CSS escape \2686 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Miscellaneous Symbols like ⚆ use numeric codes. Use &#9862; or &#x2686; in HTML, or \2686 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, punctuation, 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