HTML Entity for Hammer and Sickle (☭)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+262D

What You'll Learn

How to display the Hammer and Sickle symbol (☭) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+262D (HAMMER AND SICKLE) in the Miscellaneous Symbols block (U+2600–U+26FF). It depicts a crossed hammer and sickle and is widely recognized in historical, cultural, and educational contexts.

Render it with ☭, ☭, or CSS escape \262D. There is no named HTML entity. Do not confuse ☭ with U+2692 (⚒, hammer and pick for construction/tools).

⚡ Quick Reference — Hammer and Sickle

Unicode U+262D

Miscellaneous Symbols

Hex Code ☭

Hexadecimal reference

HTML Code ☭

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+262D
Hex code       ☭
HTML code      ☭
Named entity   (none)
CSS code       \262D
Meaning        Hammer and sickle (crossed)
Related        U+2692 = hammer and pick (⚒)
1

Complete HTML Example

This example demonstrates the Hammer and Sickle symbol (☭) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\262D";
  }
 </style>
</head>
<body>
<p>Hammer and Sickle using Hexadecimal: &#x262D;</p>
<p>Hammer and Sickle using HTML Code: &#9773;</p>
<p id="point">Hammer and Sickle using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Hammer and Sickle symbol (☭) is widely supported in modern browsers when the font includes Miscellaneous Symbols:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

Hammer and Sickle (☭) in context, compared with the construction hammer-and-pick glyph (⚒):

Historical caption ☭ Symbol on period artifact
Educational note ☭ Referenced in 20th-century history
Large glyph
U+262D vs U+2692 ☭   ⚒
Numeric refs &#x262D; &#9773; \262D

🧠 How It Works

1

Hexadecimal Code

&#x262D; uses the Unicode hexadecimal value 262D to display the Hammer and Sickle symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9773; uses the decimal Unicode value 9773 to display the same character.

HTML markup
3

CSS Entity

\262D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+262D is in Miscellaneous Symbols. There is no named HTML entity. Next: Heavy Asterisk (✱).

Use Cases

The Hammer and Sickle symbol (☭) is commonly used in:

📚 Historical & educational

Textbooks, history articles, and coursework referencing 20th-century symbolism.

🏛 Museums & archives

Exhibition captions, catalog entries, and archival descriptions on artifacts.

🎓 Academic & research

Political science, sociology, or area studies requiring accurate representation.

📄 Documentation

Unicode references, font specimens, and character lists.

🎬 Media & film studies

Analysis of historical media where the symbol is referenced.

🌐 International content

Multilingual or regional pages in factual or educational context.

💡 Best Practices

Do

  • Use the symbol only where context is clear (historical or educational)
  • Consider audience and regional sensitivities
  • Declare UTF-8 with <meta charset="utf-8">
  • Verify fonts support U+262D for consistent rendering
  • Pair with descriptive text or aria-label for accessibility
  • Test rendering across browsers; use one numeric style per project

Don’t

  • Use ☭ decoratively without factual or documentary purpose
  • Confuse U+262D (☭) with U+2692 (⚒, hammer and pick)
  • Expect a named HTML entity for U+262D
  • Use CSS \262D in HTML text nodes
  • Assume every font includes this glyph

Key Takeaways

1

Two HTML numeric references plus CSS insert U+262D

&#x262D; &#9773;
2

For CSS, use \262D in the content property

3

Unicode U+262D — HAMMER AND SICKLE (☭)

4

No named entity; numeric hex or decimal codes only

❓ Frequently Asked Questions

Use &#x262D; (hex), &#9773; (decimal), or \262D in CSS content. There is no named entity. All three methods render the Hammer and Sickle symbol (☭) correctly.
U+262D (HAMMER AND SICKLE). Miscellaneous Symbols block. Hex 262D, decimal 9773. The symbol (☭) represents a crossed hammer and sickle.
In historical and educational content, museum and archive sites, academic publications, cultural or political studies, and reference documentation where accurate representation is needed. Use with appropriate context and sensitivity for your audience and region.
HTML references (&#9773; or &#x262D;) go in markup. The CSS escape \262D is used in stylesheets, typically on ::before or ::after. Both produce ☭.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+262D is in the Miscellaneous Symbols block and uses numeric hex (&#x262D;) or decimal (&#9773;) codes, which is standard for such characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, math, and more.

All HTML Entities →

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