HTML Entity for Peace Symbol (☮)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+262E

What Is the Peace Symbol Entity?

Peace symbol (☮) is the Miscellaneous Symbols character at Unicode U+262E (PEACE SYMBOL). It is the classic circle-and-lines mark used for peace and nonviolence. There is no named HTML entity; use hex, decimal, UTF-8, or CSS.

Remember
Character     ☮
Unicode       U+262E
Named entity  none
Hex entity    ☮
Decimal       ☮
CSS escape    \262E

All numeric and UTF-8 forms produce the same glyph: ☮. Prefer ☮ for portable markup; paste ☮ in UTF-8 when convenient.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entitynoneNot defined in HTML5
Hex entity☮HTML markup
Decimal entity☮HTML markup
Direct character☮HTML text (UTF-8 default)
CSS escape\262EStylesheet content

When to Use Which

SituationUse
Portable HTML without pasting Unicode☮ or ☮
UTF-8 messaging or design textType or paste ☮
Generated text via ::before / ::aftercontent: "\262E"
Victory / V-hand gesture instead✌ (U+270C)

Live Preview

Peace symbol rendered in common contexts.

Glyph ☮
Large glyph ☮
In a sentence ☮ Peace and harmony
With entities Hex: ☮ | Decimal: ☮ | Named: none
Related symbols ✌ (victory hand) · 🕊 · ⚖

Complete HTML Example

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

Hex + Decimal + Direct + CSS

Four ways to produce ☮ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Peace Symbol (☮) in HTML</title>
  <style>
    #point::after {
      content: "\262E";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x262E;</p>
  <p>Using Decimal: &#9774;</p>
  <p>Using Direct Character: ☮</p>
  <p id="point">Using CSS Entity: </p>
  <p>Message: &#x262E; Peace and harmony</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+262E → &#x262E; in HTML. Best portable choice (no named entity).

2. Decimal: same code point as 9774 → &#9774;. Same glyph.

3. Direct: paste ☮ in a UTF-8 file with <meta charset="UTF-8">.

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

5. Named: HTML5 has none — do not invent a name like &peace;.

Pitfalls & Tips

Common mistakes when working with this symbol entity.

No name

Do not invent a named entity

There is no &…; name for U+262E. Use &#x262E; or &#9774;.

Not ✌

Peace mark ≠ victory hand

U+270C is a hand gesture. U+262E is the dedicated peace symbol glyph.

Accessibility

Add visible meaning

If the symbol carries the message, pair it with text or an aria-label so screen readers get the intent.

Font

Glyph coverage varies

Some fonts omit Miscellaneous Symbols. Provide a fallback font or descriptive text if needed.

CSS vs HTML

Do not mix escapes

\262E belongs in CSS. &#x262E; / &#9774; belong in HTML.

UTF-8

Declare charset

If you paste ☮ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Peace symbol (U+262E) and its entity forms (&#x262E;, &#9774;, CSS \\262E) are supported in all mainstream browsers. Glyph availability depends on the font.

✓ Universal support

Peace Symbol (&#x262E;)

Prefer &#x262E;, or encode with decimal or CSS escape — same glyph everywhere (when the font has 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 All versions
Yes
U+262E / entities Full support

Bottom line: There is no named entity. Prefer &#x262E; or &#9774; in HTML, and \\262E only inside CSS content.

Key Takeaways

  • Unicode: peace symbol is U+262E (decimal 9774), Miscellaneous Symbols.
  • HTML: no named entity — use &#x262E; or &#9774;.
  • CSS: use \262E inside content for generated text.
  • Meaning: peace mark — not the same as ✌ (U+270C).

One line: U+262E → &#x262E; / &#9774; / CSS \262E (no named entity).

Frequently Asked Questions

Use &#x262E; (hex), &#9774; (decimal), type ☮ in UTF-8, or the CSS escape \262E in content. There is no named HTML entity for U+262E.
U+262E (PEACE SYMBOL). Hex 262E, decimal 9774. It belongs to Miscellaneous Symbols and is the classic circle-and-lines peace mark.
No. HTML5 does not define a named entity for this character. Prefer &#x262E; or &#9774;, or paste ☮ in a UTF-8 document.
Use it for messaging about peace, nonviolence, or related design. Prefer &#x262E; for portable markup. Add accessible text when the symbol alone carries meaning.
HTML numeric entities (&#9774; or &#x262E;) go in markup. The CSS escape \262E is used in stylesheets (usually in the content property of ::before/::after). Both render ☮.
✌ (U+270C) is the victory hand / V sign. ☮ (U+262E) is the dedicated peace symbol. Do not treat them as interchangeable.

Did you know?

Peace symbol (☮) is Unicode U+262E (decimal 9774) — PEACE SYMBOL in Miscellaneous Symbols. There is no named HTML entity; use &#x262E;, &#9774;, UTF-8 ☮, or CSS \262E. It is not the same as the victory hand U+270C (✌).

Next: Pencil

Learn the HTML entity for the pencil symbol — the next character in this entity sequence.

Pencil 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