HTML Entity for Digram Greater Yin (⚏)

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

What You'll Learn

How to display the Digram for Greater Yin (⚏) in HTML using hexadecimal, decimal, and CSS entity methods. This glyph is U+268F in the Miscellaneous Symbols block (U+2600–U+26FF) and shows two broken (yin) lines in I Ching (Yijing) and Taoist hexagram notation.

There is no named HTML entity for U+268F. Use ⚏, ⚏, or \268F in CSS content. It is one of four digrams used to build hexagrams. Previous in the sequence: Digram Greater Yang (⚌).

⚡ Quick Reference — Digram Greater Yin

Unicode U+268F

Miscellaneous Symbols (U+2600–U+26FF)

Hex Code ⚏

Hexadecimal reference

HTML Code ⚏

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+268F
Hex code       ⚏
HTML code      ⚏
Named entity   —
CSS code       \268F
Four digrams   U+268C–U+268F
1

Complete HTML Example

This example demonstrates the Digram Greater Yin symbol (⚏) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\268F";
  }
 </style>
</head>
<body>
<p>Digram Greater Yin using Hexadecimal: &#x268F;</p>
<p>Digram Greater Yin using HTML Code: &#9871;</p>
<p id="point">Digram Greater Yin using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+268F is supported in modern browsers; use a font with Miscellaneous Symbols coverage for consistent I Ching digram glyphs:

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

👀 Live Preview

See the Digram Greater Yin (⚏) and related I Ching digrams in context:

Greater Yin ⚏ — two broken (yin) lines
Four digrams ⚌ ⚍ ⚎ ⚏
With Greater Yang ⚌ yang   ⚏ yin
Large glyph
Monospace refs &#x268F; &#9871; \268F

🧠 How It Works

1

Hexadecimal Code

&#x268F; uses the Unicode hexadecimal value 268F to display the Digram Greater Yin symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9871; uses the decimal Unicode value 9871 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

\268F 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 Greater Yin digram: . Unicode U+268F is in Miscellaneous Symbols (U+2600–U+26FF). No named HTML entity exists. Do not confuse with U+268E (⚎, lesser yin). See Digram Greater Yang (⚌).

Use Cases

The Digram Greater Yin symbol (⚏) commonly appears in the following scenarios:

☯ I Ching (Yijing)

Hexagram notation, readings, and interpretations using the four digrams.

📿 Taoist & spiritual

Sites on Taoism, yin and yang, and Chinese philosophy referencing greater yin.

📚 Education

Teaching I Ching, cosmology, and hexagram building blocks in articles or courses.

🔮 Oracle apps

Consultation tools and hexagram generators rendering digrams ⚌⚍⚎⚏.

🌎 Unicode reference

Documentation for Miscellaneous Symbols and I Ching character lists.

📑 HTML entities

Cultural and spiritual projects needing digram symbols in HTML markup.

💡 Best Practices

Do

  • Use fonts that cover Miscellaneous Symbols (U+2600–U+26FF)
  • Pair ⚏ with text or aria-label (e.g. “Greater Yin”)
  • Combine with Greater Yang (⚌) and other digrams for full notation
  • Pick one numeric style (hex or decimal) per project
  • Explain that ⚏ means two broken yin lines for unfamiliar readers

Don’t

  • Confuse U+268F (greater yin) with U+268E (lesser yin, ⚎)
  • Expect a named HTML entity (none exists for U+268F)
  • Use CSS escape \268F inside HTML markup
  • Mix hex and decimal styles randomly in one file
  • Assume every font renders I Ching digrams clearly

Key Takeaways

1

Two numeric references render ⚏

&#x268F; &#9871;
2

For CSS stylesheets, use the escape in the content property

\268F
3

Unicode U+268F is DIGRAM FOR GREATER YIN (two broken yin lines)

4

No named HTML entity—use numeric codes or CSS only

5

Next in sequence: Digram Lesser Yang (⚍)

❓ Frequently Asked Questions

Use &#x268F; (hex), &#9871; (decimal), or \268F in CSS content. There is no named HTML entity. All three produce ⚏.
U+268F (hex 268F, decimal 9871) in the Miscellaneous Symbols block. It represents two broken (yin) lines in I Ching hexagram notation.
In I Ching (Yijing) content, Taoist or Chinese cosmological websites, spiritual and cultural pages, and any documentation or apps that need the greater yin digram (two broken lines).
HTML numeric references (&#9871; or &#x268F;) go in markup. The CSS escape \268F is used in stylesheets, typically in the content property of pseudo-elements. Both render ⚏.
In I Ching notation, ⚏ shows two broken (yin) lines—greater yin (old yin). The four digrams are ⚌ greater yang, ⚍ lesser yang, ⚎ lesser yin, and ⚏ greater yin (U+268C–U+268F).

Explore More HTML Entities!

Discover 1500+ HTML character references — I Ching symbols, dice, math operators, 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