HTML Entity for Adi Shakti (☬)

What You'll Learn
How to display the ☬ glyph in HTML using numeric character references. Unicode assigns this code point the official name Farsi symbol (U+262C); many spiritual, cultural, and typography resources also call it Adi Shakti in titles and examples, so we use that familiar label here while keeping the codes accurate.
The character lives in the Miscellaneous Symbols block (U+2600–U+26FF). There is no named HTML entity for ☬, so you use ☬ or ☬ in markup, or \262C in CSS content on pseudo-elements.
⚡ Quick Reference — Adi Shakti Entity
U+262CMiscellaneous Symbols block
☬Hexadecimal reference
☬Decimal reference
\262CUse in CSS content
Name Value
──────────── ──────────
Unicode U+262C
Hex code ☬
HTML code ☬
Named entity (none)
CSS code \262CComplete HTML Example
This example shows the ☬ symbol using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\262C";
}
</style>
</head>
<body>
<p>Adi Shakti using Hexa Decimal: ☬</p>
<p>Adi Shakti using HTML Code: ☬</p>
<p id="point">Adi Shakti using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Numeric references for U+262C are supported in all modern browsers. Final appearance depends on font coverage for the Miscellaneous Symbols block:
👀 Live Preview
See the ☬ glyph rendered in typical contexts:
🧠 How It Works
Hexadecimal Code
☬ references Unicode 262C in hexadecimal. The x prefix marks a hex numeric character reference.
Decimal HTML Code
☬ is the decimal code point 9772 for the same character—often used when authors think in decimal Unicode values.
CSS Entity (Escape)
\262C is the CSS escape (four hex digits) used in content on ::before / ::after to emit ☬ without placing the raw character in HTML.
Same visual result
All methods render ☬. Unicode is U+262C (Miscellaneous Symbols, U+2600–U+26FF). Official name: Farsi symbol. There is no standard named HTML entity; stick to numeric references or CSS escapes.
Use Cases
The ☬ glyph (U+262C) fits these kinds of content when a single Miscellaneous Symbol is appropriate:
Meditation hubs, devotional blogs, and mindful design where a compact symbolic glyph is part of the visual language.
Community and education sites explaining symbols alongside respectful context and captions.
UTF-8 pages that mix Latin script with occasional symbolic punctuation from the U+26xx range.
Short labels or decorative markers in wellness or calendar UIs (always pair with text for critical actions).
Specimens showing Miscellaneous Symbols coverage and fallback behavior.
Developer docs that list code points with live renders for U+262C.
Matching a printed brochure or legacy PDF that already uses this exact character.
💡 Best Practices
Do
- Use UTF-8 and one numeric style (hex or decimal) consistently
- Add visible text or captions when the symbol carries cultural or spiritual meaning
- Prefer
☬or☬when generating HTML from code - Test body and heading fonts for U+262C coverage and fallback quality
- Use
\262Conly in CSScontent, not inside HTML text nodes
Don’t
- Assume every custom webfont includes U+262C
- Use the glyph alone as the only label for a critical UI action
- Mix hex and decimal references at random in one template
- Paste CSS escapes into HTML markup (they belong in stylesheets)
- Present the symbol without context in sensitive religious or cultural settings
Key Takeaways
Two HTML numeric references render ☬
☬ ☬In CSS, use the escape in content on pseudo-elements
\262CUnicode U+262C (official name: Farsi symbol) in Miscellaneous Symbols
There is no named HTML entity for this character—use numeric references
Pair ☬ with explanatory text so readers and assistive technology understand intent
❓ Frequently Asked Questions
☬ (hex), ☬ (decimal), or \262C in CSS content. All produce ☬. There is no standard named entity.U+262C (hex 262C, decimal 9772). Unicode’s official name is Farsi symbol; it is in the Miscellaneous Symbols block. Many guides use the label Adi Shakti in headings for the same glyph.☬ or ☬) go in markup. The CSS escape \262C belongs in stylesheets, usually in the content property of ::before or ::after. Same glyph, different layers.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
