HTML Entity for Peace Symbol (☮)

What You'll Learn
How to display the Peace Symbol (☮) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+262E (PEACE SYMBOL) in the Miscellaneous Symbols block (U+2600–U+26FF)—the classic circular peace sign associated with nuclear disarmament, harmony, and nonviolence.
Render it with ☮, ☮, or CSS escape \262E. There is no named HTML entity. Do not confuse ☮ with U+270C (✌, victory hand), U+262F (☯, yin yang), or religious cross symbols like U+2626 (☦, orthodox cross).
⚡ Quick Reference — Peace Symbol
U+262EMiscellaneous Symbols (U+2600–U+26FF)
☮Hexadecimal reference
☮Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+262E
Hex code ☮
HTML code ☮
Named entity (none)
CSS code \262E
Meaning Peace symbol (nuclear disarmament sign)
Related U+270C = victory hand (✌)
U+262F = yin yang (☯)
U+2626 = orthodox cross (☦)
Block Miscellaneous Symbols (U+2600–U+26FF)Complete HTML Example
A simple example showing ☮ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\262E";
}
</style>
</head>
<body>
<p>Peace symbol (hex): ☮</p>
<p>Peace symbol (decimal): ☮</p>
<p>Message: ☮ Peace and harmony</p>
<p id="point">Peace symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Peace Symbol (☮) is widely supported in all modern browsers:
👀 Live Preview
See the Peace Symbol (☮) in design and messaging contexts:
🧠 How It Works
Hexadecimal Code
☮ uses the Unicode hexadecimal value 262E to display the peace symbol.
Decimal HTML Code
☮ uses the decimal Unicode value 9774 for the same character.
CSS Entity
\262E is used in CSS stylesheets in the content property of pseudo-elements for icons or decorative markers.
Peace symbol result
All three methods render ☮. Unicode U+262E in Miscellaneous Symbols. Next: Pencil (✏).
Use Cases
The Peace Symbol (☮) is commonly used in:
Peace campaigns, anti-war pages, and nonviolence movements.
Historical articles, 1960s design, and social justice themes.
Banners, posters, and typography accents for harmony themes.
Peace day events, vigils, and community gatherings online.
Character pickers, entity documentation, and symbol guides.
Pair ☮ with visible text; provide alt text when used as an icon.
💡 Best Practices
Do
- Use
☮or☮for inline peace symbols - Include surrounding text context for activism and cultural use
- Set
<meta charset="utf-8">for reliable rendering - Use the correct symbol—☮ not victory hand ✌
- Pick one numeric style per project for consistency
Don’t
- Confuse ☮ with victory hand ✌ or yin yang ☯
- Use padded Unicode notation like U+0262E—the correct value is
U+262E - Use CSS escape
\262Ein HTML text nodes - Use ☮ as the sole indicator without text for accessibility
- Assume every font renders Miscellaneous Symbols identically—test your typeface
Key Takeaways
Two HTML numeric references plus CSS for U+262E
☮ ☮For CSS stylesheets, use \262E in the content property
Unicode U+262E — PEACE SYMBOL in Miscellaneous Symbols
Distinct from victory hand ✌ and yin yang ☯
Previous: Partially Recycled Paper Symbol (♽) Next: Pencil (✏)
❓ Frequently Asked Questions
☮ (hex), ☮ (decimal), or \262E in CSS content. There is no named entity. All three render ☮.U+262E (PEACE SYMBOL). Miscellaneous Symbols block (U+2600–U+26FF). Hex 262E, decimal 9774.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, symbols, and more.
8 people found this page helpful
