HTML Entity for Monogram Yang (⚊)

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

What You'll Learn

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

Render it with ⚊, ⚊, or CSS escape \268A. There is no named HTML entity. This is a philosophical/Unicode symbol—not a Western-style personal monogram or logo mark. Do not confuse ⚊ with the taijitu Yin Yang symbol (☯, U+262F) or with unrelated uses of the word “yang.”

⚡ Quick Reference — Monogram Yang

Unicode U+268A

Yijing Monograms

Hex Code ⚊

Hexadecimal reference

HTML Code ⚊

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

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

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

🌐 Browser Support

U+268A 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 Yang symbol (⚊) in Yijing and yin-yang contexts:

Yang / Yin pair ⚊ ⚋
Trigram lines ⚊⚊⚊
Large glyph
vs Yin Yang ⚊ monogram   ☯ taijitu
Numeric refs &#x268A; &#9866; \268A

🧠 How It Works

1

Hexadecimal Code

&#x268A; uses the Unicode hexadecimal value 268A to display Monogram Yang. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Monogram Yang 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 &#x268A; or &#9866; in HTML markup
  • Pair with Monogram Yin (⚋) when showing trigram lines
  • Use fonts that cover Yijing Monograms for consistent rendering
  • Add aria-label (e.g. “yang monogram”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⚊ (Yijing monogram) with ☯ (Yin Yang taijitu)
  • Assume this is a Western personal monogram or logo glyph
  • Put CSS escape \268A 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 ⚊

&#x268A; &#9866;
2

For CSS stylesheets, use the escape in the content property

\268A
3

Unicode U+268A — MONOGRAM FOR YANG

4

No named HTML entity—use numeric references

5

Pair: Monogram Yin (⚋)

❓ Frequently Asked Questions

Use &#x268A; (hex), &#9866; (decimal), or \268A in CSS content. All produce ⚊. There is no named entity.
U+268A (MONOGRAM FOR YANG). Yijing Monograms block (U+2680–U+268B). Hex 268A, decimal 9866.
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 (&#9866; or &#x268A;) go directly in markup. The CSS escape \268A 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