HTML Entity for Medium Small White Circle (⚬)

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

What You'll Learn

How to display the medium small white circle (⚬) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+26AC (MEDIUM SMALL WHITE CIRCLE) in the Dingbats block (U+2700–U+27BF)—a compact hollow circle for UI bullets, design accents, and typographic markers.

Render it with ⚬, ⚬, or CSS escape \26AC. There is no named HTML entity. Do not confuse ⚬ with ○ (white circle, U+25CB) or ⚪ (medium white circle, U+26AA)—each is a distinct size and glyph.

⚡ Quick Reference — Medium Small White Circle

Unicode U+26AC

Dingbats block

Hex Code ⚬

Hexadecimal reference

HTML Code ⚬

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+26AC
Hex code       ⚬
HTML code      ⚬
Named entity   (none)
CSS code       \26AC
Meaning        Medium small white circle
Related        U+25CB = white circle (○)
               U+26AA = medium white circle (⚪)
               U+26AB = medium black circle (⚫)
1

Complete HTML Example

This example demonstrates the medium small white circle (⚬) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\26AC";
  }
 </style>
</head>
<body>
<p>Circle using Hexadecimal: &#x26AC;</p>
<p>Circle using HTML Code: &#9900;</p>
<p id="point">Circle using CSS Entity: </p>
<p>List marker: &#x26AC; First item &nbsp; &#x26AC; Second item</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The medium small white circle is widely supported in modern browsers:

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

👀 Live Preview

See the medium small white circle (⚬) in UI and design contexts:

List markers ⚬ Feature one   ⚬ Feature two
Large glyph
Size comparison ○ white   ⚪ medium   ⚬ small
Inline separator Draft ⚬ Review ⚬ Published
Numeric refs &#x26AC; &#9900;

🧠 How It Works

1

Hexadecimal Code

&#x26AC; uses the Unicode hexadecimal value 26AC to display the medium small white circle. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9900; uses the decimal Unicode value 9900 to display the same character.

HTML markup
3

CSS Entity

\26AC is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after for custom list bullets.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+26AC sits in the Dingbats block (U+2700–U+27BF). No named HTML entity—use numeric codes in markup.

Use Cases

The medium small white circle (⚬) is commonly used in:

📋 List bullets

Custom inline markers and compact bullet points in content.

🎨 UI design

Status dots, step indicators, and minimalist interface accents.

📝 Typography

Inline separators, footnote markers, and decorative punctuation.

📰 Publishing

Editorial layouts, feature lists, and magazine-style web pages.

📈 Dashboards

Legend keys, chart markers, and data visualization labels.

📄 Reference guides

HTML entity tutorials and Dingbats Unicode documentation.

💡 Best Practices

Do

  • Use &#x26AC; or &#9900; consistently per project
  • Prefer semantic <ul>/<li> for real lists; use ⚬ for decorative accents
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Pair with accessible text when the circle conveys meaning
  • Test glyph rendering across browsers and font stacks

Don’t

  • Confuse ⚬ with ○ (white circle) or ⚪ (medium white circle)
  • Rely on decorative circles alone for critical status information
  • Put CSS escape \26AC in HTML text nodes
  • Use HTML entities in JS (use \u26AC)
  • Use padded Unicode notation like U+026AC—the correct value is U+26AC

Key Takeaways

1

Two HTML references both render ⚬

&#x26AC; &#9900;
2

For CSS stylesheets, use the escape in the content property

\26AC
3

Unicode U+26AC — MEDIUM SMALL WHITE CIRCLE in Dingbats

4

No named HTML entity—use numeric codes or UTF-8 literal ⚬

5

Smaller than ⚪ (medium white) and ○ (standard white circle)

❓ Frequently Asked Questions

Use &#x26AC; (hex), &#9900; (decimal), or \26AC in CSS content. All produce ⚬. There is no named HTML entity for U+26AC.
U+26AC (MEDIUM SMALL WHITE CIRCLE). Dingbats block (U+2700–U+27BF). Hex 26AC, decimal 9900.
For UI bullets, list markers, design accents, status indicators, typography separators, and decorative circle symbols in web content.
HTML references (&#9900; or &#x26AC;) go directly in markup. The CSS escape \26AC is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. U+26AC has no named HTML entity. Use numeric references &#x26AC; or &#9900;, or type ⚬ directly in UTF-8 source files.

Explore More HTML Entities!

Discover 1500+ HTML character references — dingbats, symbols, and decorative glyphs.

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