HTML Entity for Monogram Yin (⚋)

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

What You'll Learn

How to display the Monogram Yin symbol (⚋) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+268B (MONOGRAM FOR YIN) in the Yijing Monograms block (U+2680–U+268B)—the yin line used in Yijing (I Ching) trigram and hexagram notation alongside the yang monogram ⚊.

Render it with ⚋, ⚋, or CSS escape \268B. There is no named HTML entity. This is a philosophical/Unicode symbol—not Western custom typography or spiritual clip art. Do not confuse ⚋ with the taijitu Yin Yang symbol (☯, U+262F) or with unrelated uses of the word “yin.”

⚡ Quick Reference — Monogram Yin

Unicode U+268B

Yijing Monograms

Hex Code ⚋

Hexadecimal reference

HTML Code ⚋

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+268B
Hex code       ⚋
HTML code      ⚋
Named entity   (none)
CSS code       \268B
Meaning        Monogram for Yin (Yijing line)
Related        U+268A = Monogram Yang (⚊)
               U+262F = Yin Yang (☯)
1

Complete HTML Example

This example demonstrates the Monogram Yin symbol (⚋) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\268B";
  }
 </style>
</head>
<body>
<p>Monogram Yin using Hexadecimal: &#x268B;</p>
<p>Monogram Yin using HTML Code: &#9867;</p>
<p id="point">Monogram Yin using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+268B is supported in modern browsers; use a font with Yijing Monograms or broad symbol coverage for consistent glyphs:

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

👀 Live Preview

See the Monogram Yin symbol (⚋) in Yijing and yin-yang contexts:

Yang / Yin pair ⚊ ⚋
Trigram lines ⚋⚋⚋
Large glyph
vs Yin Yang ⚋ monogram   ☯ taijitu
Numeric refs &#x268B; &#9867; \268B

🧠 How It Works

1

Hexadecimal Code

&#x268B; uses the Unicode hexadecimal value 268B to display Monogram Yin. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\268B 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: . Unicode U+268B in Yijing Monograms (U+2680–U+268B). Pair with Monogram Yang (⚊) for yin-yang line notation.

Use Cases

The Monogram Yin symbol (⚋) is commonly used in:

☯ Yijing / I Ching

Trigram and hexagram diagrams built from yang and yin lines.

☪ Taoist philosophy

Educational pages on yin-yang concepts and classical texts.

📚 Cultural studies

Chinese philosophy, history, and comparative religion content.

🎓 Education

Courses and tutorials explaining hexagram line notation.

📄 Reference guides

Unicode charts and HTML entity documentation.

🌐 Symbol libraries

Character pickers and special-symbol cheat sheets.

💡 Best Practices

Do

  • Use numeric codes &#x268B; or &#9867; in HTML markup
  • Pair with Monogram Yang (⚊) when showing trigram lines
  • Use fonts that cover Yijing Monograms for consistent rendering
  • Add aria-label (e.g. “yin monogram”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⚋ (Yijing monogram) with ☯ (Yin Yang taijitu)
  • Assume this is decorative typography or a generic spiritual icon
  • Put CSS escape \268B in HTML text nodes
  • Mix entity styles randomly in one file
  • Rely on the symbol alone without accessible description

Key Takeaways

1

Hex, decimal, and CSS all render ⚋

&#x268B; &#9867;
2

For CSS stylesheets, use the escape in the content property

\268B
3

Unicode U+268B — MONOGRAM FOR YIN

4

No named HTML entity—use numeric references

5

Pair: Monogram Yang (⚊)

❓ Frequently Asked Questions

Use &#x268B; (hex), &#9867; (decimal), or \268B in CSS content. All produce ⚋. There is no named entity.
U+268B (MONOGRAM FOR YIN). Yijing Monograms block (U+2680–U+268B). Hex 268B, decimal 9867.
In Yijing (I Ching) content, Taoist philosophy pages, trigram and hexagram diagrams, educational material on yin-yang line notation, and Unicode symbol references.
⚊ (U+268A) is Monogram Yang—the yang line in Yijing notation. ⚋ (U+268B) is Monogram Yin—the yin line. Together they form trigram building blocks.
HTML references (&#9867; or &#x268B;) go directly in markup. The CSS escape \268B is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

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