HTML Entity for Monogram Yang (⚊)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+268A

What Is the Monogram Yang Entity?

Monogram Yang (⚊) is the Yijing yang line at Unicode U+268A. It is the unbroken line used in I Ching trigrams. There is no named HTML entity for it.

Remember
Character     ⚊
Unicode       U+268A
Hex entity    ⚊
Decimal       ⚊
CSS escape    \268A
Named entity  (none)

Hex, decimal, CSS, and a typed character all produce the same glyph: ⚊.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⚊UTF-8 HTML text (default choice)
Hex entity⚊HTML markup
Decimal entity⚊HTML markup
CSS escape\268AStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Yijing yang line / trigram diagramsType ⚊ (UTF-8) or ⚊
Need an entity in HTML source⚊ or ⚊
Generated text via ::before / ::aftercontent: "\268A"
Yin line (broken line)See Monogram Yin — ⚋
Taijitu circle (☯)Use U+262F — not this monogram

Live Preview

Monogram Yang alone, paired with Yin, and beside the taijitu.

Example Yijing: ⚊ Yang   ⚋ Yin
Large glyph ⚊
Trigram style ⚊⚊⚊
vs ⚋ / ☯ ⚊  |  ⚋  |  ☯
With entities Hex: ⚊ | Decimal: ⚊

Complete HTML Example

One page that shows Monogram Yang with hex, decimal, CSS, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ⚊ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Monogram Yang (⚊)</title>
  <style>
    #point::after {
      content: "\268A";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x268A;</p>
  <p>Using HTML Code: &#9866;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Yijing: ⚊ Yang &nbsp; ⚋ Yin</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+268A → &#x268A; in HTML. The browser turns it into ⚊.

2. Decimal: same code point as 9866 → &#9866;. Same result as hex.

3. CSS: use \268A in content (not an HTML entity). #point::after appends that ⚊ after the paragraph text.

4. Pairing: ⚊ is the yang line; pair it with ⚋ (Monogram Yin) for trigram diagrams — not with ☯.

Pitfalls & Tips

Common mistakes when working with Monogram Yang.

Named?

No named entity

HTML5 does not define a named entity for U+268A. Use numeric forms.

vs ☯

Not the taijitu

☯ (U+262F) is the Yin Yang circle. ⚊ is a single Yijing line symbol.

vs ⚋

Not Monogram Yin

⚋ is the broken yin line. ⚊ is the unbroken yang line. Pair them; do not swap them.

CSS vs HTML

Do not mix escapes

\268A belongs in CSS. &#x268A; / &#9866; belong in HTML.

Encoding

Declare UTF-8

If you type ⚊ directly, keep <meta charset="UTF-8"> so the file is not misread.

Semicolon

End references

Always finish with ; — write &#9866;, not &#9866.

Browser Support

Monogram Yang (U+268A) and its numeric entity forms (&#x268A;, &#9866;, CSS \\268A) are supported in all mainstream browsers with a Unicode-capable font that covers Yijing symbols.

✓ Universal support

Monogram Yang (&#x268A;)

Type ⚊, or encode with hex, decimal, or CSS escape — same glyph everywhere fonts support it.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+268A / entities Full support

Bottom line: Type ⚊ for normal UTF-8 text. Prefer &#x268A; or &#9866; when encoding must be explicit, and \\268A only inside CSS content.

Key Takeaways

  • Unicode: Monogram Yang is U+268A (decimal 9866).
  • HTML: use &#x268A; or &#9866; — no named entity.
  • CSS: use \268A inside content for generated text.
  • Pair: use with ⚋ (yin); do not confuse with ☯ (taijitu).

One line: U+268A → type ⚊, or encode as &#x268A; / &#9866; / CSS \268A.

Frequently Asked Questions

Use &#x268A; (hex), &#9866; (decimal), or the CSS escape \268A in the content property. All render ⚊. There is no named HTML entity for U+268A.
U+268A (MONOGRAM FOR YANG). Hex 268A, decimal 9866. It belongs to the Yijing Hexagram Symbols block.
No. U+268A has no named HTML entity. Use numeric references like &#x268A; or &#9866;.
Use it for Yijing (I Ching) trigram/hexagram diagrams, educational yin-yang line notation, and Taoist philosophy pages that need the yang monogram.
HTML entities (&#9866; or &#x268A;) go in markup. The CSS escape \268A is used in stylesheets (usually in the content property of ::before/::after). Both render ⚊.
No. Monogram Yang is ⚊ (U+268A), a Yijing line. Monogram Yin is ⚋ (U+268B). Yin Yang (taijitu) is ☯ (U+262F). Different symbols.

Did you know?

Monogram Yang is Unicode U+268A (decimal 9866) — MONOGRAM FOR YANG in Yijing Hexagram Symbols. It is the unbroken yang line used in I Ching trigrams. HTML5 has no named entity — use &#x268A; or &#9866;. Not the same as the taijitu Yin Yang symbol ☯ (U+262F).

Next: Monogram Yin

Continue with the Monogram Yin (⚋) entity tutorial.

Monogram Yin tutorial →

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