HTML Entity for Outlined White Star (⚝)

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

What You'll Learn

How to display the Outlined White Star (⚝) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+269D (OUTLINED WHITE STAR) in the Miscellaneous Symbols block (U+2600–U+26FF)—an outlined star useful for decorative highlights, section markers, badges, bullets, and symbolic typography.

Render it with ⚝, ⚝, or CSS escape \269D. There is no named HTML entity. Do not confuse ⚝ with U+2606 (☆, white star with named ☆), U+272D (✭, outlined black star in Dingbats), or U+2605 (★, solid black star).

⚡ Quick Reference — Outlined White Star

Unicode U+269D

Miscellaneous Symbols

Hex Code ⚝

Hexadecimal reference

HTML Code ⚝

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+269D
Hex code       ⚝
HTML code      ⚝
Named entity   (none)
CSS code       \269D
Meaning        Outlined white star
Related        U+2606 = white star (☆, ☆)
               U+2605 = black star (★)
               U+272D = outlined black star (✭)
               U+272A = circled white star (✪)
Block          Miscellaneous Symbols (U+2600–U+26FF)
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: "\269D";
  }
 </style>
</head>
<body>
<p>Outlined white star (hex): &#x269D;</p>
<p>Outlined white star (decimal): &#9885;</p>
<p id="point">Outlined white star (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Outlined White Star (⚝) is widely supported in all modern browsers:

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

👀 Live Preview

See the Outlined White Star (⚝) in decorative and UI contexts:

Single symbol
Featured label ⚝ New arrival
Decorative row ⚝ ⚝ ⚝ Highlights
Not the same as White ☆  |  Black ★  |  Outlined ✭
Numeric refs &#x269D; &#9885; \269D

🧠 How It Works

1

Hexadecimal Code

&#x269D; uses the Unicode hexadecimal value 269D to display the outlined white star.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\269D is used in CSS stylesheets in the content property of pseudo-elements for decorative bullets or icons.

CSS stylesheet
=

Outlined star result

All three methods render . Unicode U+269D in Miscellaneous Symbols. Next: Overline (̅).

Use Cases

The Outlined White Star (⚝) is commonly used in:

🎨 Decorative design

Typography accents, banners, and symbolic section markers.

⭐ Featured highlights

New items, editor picks, and promotional labels.

📄 Custom bullets

Distinct list markers where a lighter outlined star fits the theme.

🌟 Symbolic UI

Badges, tags, and decorative icons in web layouts.

📚 Content pages

Blog posts, portfolios, and creative writing with star motifs.

📋 Unicode references

Character pickers, entity documentation, and symbol guides.

♿ Accessibility

Pair ⚝ with visible text; do not rely on the symbol alone for meaning.

💡 Best Practices

Do

  • Use &#x269D; or &#9885; for inline decorative stars
  • Use CSS \269D in ::before for custom list bullets or icons
  • Set <meta charset="utf-8"> for reliable rendering
  • Pick the correct star variant for your design—outlined vs solid vs circled
  • Pick one numeric style per project for consistency

Don’t

  • Confuse ⚝ with white star ☆, black star ★, or Dingbats ✭
  • Use padded Unicode notation like U+0269D—the correct value is U+269D
  • Use CSS escape \269D in HTML text nodes
  • Use ⚝ as the sole indicator in accessible UI without text or ARIA
  • Assume every font renders Miscellaneous Symbols identically—test your typeface

Key Takeaways

1

Two HTML numeric references plus CSS for U+269D

&#x269D; &#9885;
2

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

3

Unicode U+269D — OUTLINED WHITE STAR in Miscellaneous Symbols

4

Distinct from white star ☆, black star ★, and Dingbats ✭

❓ Frequently Asked Questions

Use &#x269D; (hex), &#9885; (decimal), or \269D in CSS content. There is no named entity. All three render ⚝.
U+269D (OUTLINED WHITE STAR). Miscellaneous Symbols block (U+2600–U+26FF). Hex 269D, decimal 9885.
No. ⚝ (U+269D) is OUTLINED WHITE STAR with a distinct outlined glyph. ☆ (U+2606) is WHITE STAR with a simpler hollow form and the named entity &star;.
For decorative typography, featured labels, symbolic bullets, badges, design accents, and any context needing a lighter outlined star from Miscellaneous Symbols.
Named HTML entities cover a subset of common characters. U+269D uses numeric hex or decimal codes or CSS escapes. For a named white star, use &star; (U+2606) instead.

Explore More HTML Entities!

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