HTML Entity for Trigram Mountain (☶)

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

What Is the Trigram Mountain Entity?

Trigram Mountain (☶) is the Miscellaneous Symbols character at Unicode U+2636 (TRIGRAM FOR MOUNTAIN). It is the I Ching (Yijing) Gen trigram — three lines representing the mountain element.

Remember
Character     ☶
Unicode       U+2636
Hex entity    ☶
Decimal       ☶
Named entity  (none)
CSS escape    \2636
Not the same  ☷ (earth) · ☳ (thunder) · ☯ (yin yang)

Hex, decimal, CSS, and a typed character all produce the same glyph: ☶. Prefer ☶ when you want an explicit entity. For the next trigram in this sequence, see Trigram Thunder (U+2633).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity☶HTML markup (best entity default)
Decimal entity☶HTML markup
Named entityNoneHTML5 does not define one
CSS escape\2636Stylesheet content
Direct character☶UTF-8 HTML text

When to Use Which

SituationUse
Mountain / Gen trigram☶ or ☶
I Ching / cultural UI☶ plus visible label text
Generated text via ::before / ::aftercontent: "\2636"
Earth trigramUse U+2637 (☷)
Yin yang / taijituUse U+262F (☯) — not a trigram

Live Preview

Trigram Mountain in I Ching context, compared with nearby trigrams.

Label ☶ Mountain (Gen) trigram
Large glyph ☶
Hex entity ☶ → ☶
vs earth / thunder ☶  |  ☷  |  ☳
With entities Hex: ☶ | Decimal: ☶

Complete HTML Example

One page that shows this symbol with hex, decimal, and CSS. Use View Output or open the live editor.

Hex + Decimal + CSS

Three ways to produce ☶ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Trigram Mountain (☶)</title>
  <style>
    #point::after {
      content: "\2636";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x2636;</p>
  <p>Using HTML Code: &#9782;</p>
  <p id="point">Using CSS Entity: </p>
  <p>&#x2636; Mountain (Gen) trigram</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2636 → &#x2636; in HTML. The browser turns it into ☶.

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

3. Named: HTML5 does not define a named entity for this character — use hex or decimal instead.

4. CSS: use \2636 in content (not an HTML entity). #point::after appends that ☶ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with Trigram Mountain.

Look-alikes

☶ ≠ ☷ ≠ ☯

U+2636 is mountain (Gen). Earth and yin yang are different characters — do not mix them when naming I Ching symbols.

Named

No &…; name

Do not invent a name. Use &#x2636; or &#9782;.

A11y

Label the trigram

A lone ☶ may be unclear. Add text like “Mountain trigram” or an accessible name for screen readers.

Fonts

Glyph coverage

Miscellaneous Symbols coverage varies. Test I Ching UIs on mobile and provide a fallback if ☶ is missing.

CSS vs HTML

Do not mix escapes

\2636 belongs in CSS. &#x2636; / &#9782; belong in HTML.

Semicolon

End references

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

Browser Support

Trigram Mountain (U+2636) and its entity forms (&#x2636;, &#9782;, CSS \\2636) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal encoding

Trigram Mountain (&#x2636;)

Encode with hex, decimal, or CSS escape — or type ☶ directly in UTF-8 HTML. No named entity.

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+2636 Full support

Bottom line: Prefer &#x2636; for readable HTML. Use \\2636 only inside CSS content. Label cultural symbols for accessibility.

Key Takeaways

  • Unicode: this symbol is U+2636 (decimal 9782) — trigram for mountain (Gen).
  • HTML: prefer &#x2636; — or use &#9782;. No named entity.
  • CSS: use \2636 inside content for generated trigram markers.
  • Watch out: not the same as earth (U+2637) or yin yang (U+262F).

One line: U+2636 → &#x2636; / &#9782; / CSS \2636 (no named entity).

Frequently Asked Questions

Use &#x2636; (hex), &#9782; (decimal), or the CSS escape \2636 in the content property. All render ☶ when the font supports Miscellaneous Symbols. There is no named HTML entity.
U+2636 (TRIGRAM FOR MOUNTAIN). Hex 2636, decimal 9782. It belongs to Miscellaneous Symbols (U+2600–U+26FF). It is the I Ching Gen trigram.
No. HTML5 does not define a named entity for U+2636. Use numeric references like &#x2636; or &#9782;.
Use it for I Ching content, Taoist or Chinese philosophy pages, cultural design, and educational material on trigrams. Pair the glyph with visible text (e.g. “Mountain trigram”) for accessibility.
U+2636 is TRIGRAM FOR MOUNTAIN (Gen). U+2637 is TRIGRAM FOR EARTH. U+262F is YIN YANG (taijitu). Related cultural symbols, different characters.
HTML entities (&#9782; or &#x2636;) go in markup. The CSS escape \2636 is used in stylesheets (usually in the content property of ::before/::after). Both render ☶.

Did you know?

Trigram Mountain is Unicode U+2636 (decimal 9782) — TRIGRAM FOR MOUNTAIN (Gen) in Miscellaneous Symbols. HTML5 has no named entity — use &#x2636; or &#9782;. One of the eight I Ching (Yijing) trigrams. Do not confuse it with Trigram Earth (U+2637) or yin yang (U+262F).

Next: Trigram Thunder

Learn the HTML entity for Trigram Thunder — next in this sequence.

Continue 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