HTML Entity for Shadowed White Circle (❍)

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

What You'll Learn

How to display the Shadowed White Circle (❍) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+274D (LOWER RIGHT SHADOWED WHITE CIRCLE) in the Dingbats block (U+2700–U+27BF)—a decorative circle with a shadow effect, often used for bullets and ornamental design.

Render it with ❍, ❍, or CSS \274D. There is no named HTML entity. Do not confuse ❍ with plain white circle U+25CB (○) or medium white circle U+26AA (⚪).

⚡ Quick Reference — Shadowed White Circle

Unicode U+274D

Dingbats (U+2700–U+27BF)

Hex Code ❍

Hexadecimal reference

HTML Code ❍

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+274D
Hex code       ❍
HTML code      ❍
Named entity   (none)
CSS code       \274D
Official name  Lower right shadowed white circle
Related        U+25CB = white circle (○)
               U+274E = negative squared cross mark (❎)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing ❍ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\274D";
  }
 </style>
</head>
<body>
<p>Shadowed white circle (hex): &#x274D;</p>
<p>Shadowed white circle (decimal): &#10061;</p>
<p id="point">Shadowed white circle (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Shadowed White Circle (❍) is supported in modern browsers when fonts include Dingbats glyphs:

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

👀 Live Preview

See the Shadowed White Circle in decorative and list contexts:

Single symbol
Decorative list ❍ First item   ❍ Second item   ❍ Third item
CSS list marker Use content: "\274D" on ::marker or ::before
Not the same as White circle ○  |  Medium circle ⚪
Numeric refs &#x274D; &#10061; \274D

🧠 How It Works

1

Hexadecimal Code

&#x274D; uses Unicode hexadecimal 274D to display the shadowed white circle.

HTML markup
2

Decimal HTML Code

&#10061; uses decimal Unicode value 10061 for the same character.

HTML markup
3

CSS Entity

\274D is used in CSS stylesheets in the content property of pseudo-elements for custom bullets.

CSS stylesheet
=

Decorative result

All three methods produce . Unicode U+274D in Dingbats. No named entity. Next: Shadowed White Latin Cross.

Use Cases

The Shadowed White Circle (❍) commonly appears in:

• Decorative bullets

Custom list markers with visual depth in articles and landing pages.

🎨 List styling

Styled unordered lists via CSS ::before or ::marker.

✨ Ornamental design

Creative layouts, portfolios, and decorative typography.

💻 UI accents

Navigation markers, feature lists, and icon-like embellishments.

📖 Symbol guides

Dingbats and HTML entity reference documentation.

🛠 Custom components

Reusable bullet components built with CSS content.

💡 Best Practices

Do

  • Use &#x274D; or &#10061; in HTML markup
  • Use CSS content: "\274D" for reusable list bullets
  • Test rendering across browsers and system fonts
  • Add aria-hidden="true" when purely decorative
  • Keep bullet size consistent with line height via CSS

Don’t

  • Use padded Unicode notation like U+0274D—the correct value is U+274D
  • Expect a named HTML entity for U+274D
  • Confuse ❍ with plain circle ○ or ⚪
  • Put CSS escape \274D in HTML text nodes
  • Rely on decorative bullets alone for list semantics—use proper <ul>/<li>

Key Takeaways

1

Three ways to render U+274D in HTML and CSS

&#x274D; &#10061;
2

For CSS stylesheets, use \274D in the content property

3

Unicode U+274D — LOWER RIGHT SHADOWED WHITE CIRCLE

4

No named entity—Dingbats block decorative symbol

❓ Frequently Asked Questions

Use &#x274D; (hex), &#10061; (decimal), or \274D in CSS content. There is no named HTML entity. All three render ❍.
U+274D (LOWER RIGHT SHADOWED WHITE CIRCLE). Dingbats (U+2700–U+27BF). Hex 274D, decimal 10061.
For decorative bullet points, custom list markers, ornamental design, UI accents, and any content needing a circle symbol with a shadow effect.
HTML references (&#10061; or &#x274D;) go in markup. The CSS escape \274D is used in stylesheets, typically in the content property of pseudo-elements for custom bullets.
Dingbats characters like U+274D use numeric hex or decimal codes in HTML. Named entities cover common characters only; decorative symbols typically use numeric references.

Explore More HTML Entities!

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