HTML Entity for Hammer and Pick (⚒)

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

What You'll Learn

How to display the Hammer and Pick symbol (⚒) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2692 (HAMMER AND PICK) in the Miscellaneous Symbols block (U+2600–U+26FF). It depicts a hammer crossed with a pick and is used for construction, mining, crafting, and tool-related content.

Render it with ⚒, ⚒, or CSS escape \2692. There is no named HTML entity. Do not confuse ⚒ with U+26CF (⛏, PICK only) or political symbols like U+262D (☭, hammer and sickle).

⚡ Quick Reference — Hammer and Pick

Unicode U+2692

Miscellaneous Symbols

Hex Code ⚒

Hexadecimal reference

HTML Code ⚒

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2692
Hex code       ⚒
HTML code      ⚒
Named entity   (none)
CSS code       \2692
Meaning        Hammer and pick (tools)
Related        U+26CF = pick only (⛏)
1

Complete HTML Example

This example demonstrates the Hammer and Pick 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: "\2692";
  }
 </style>
</head>
<body>
<p>Hammer and Pick using Hexadecimal: &#x2692;</p>
<p>Hammer and Pick using HTML Code: &#9874;</p>
<p id="point">Hammer and Pick using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Hammer and Pick 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 Pick (⚒) in context, compared with the pick-only glyph (⛏):

Construction banner ⚒ Under construction
Tools category ⚒ Hand tools
Large glyph
U+2692 vs U+26CF ⚒   ⛏
Numeric refs &#x2692; &#9874; \2692

🧠 How It Works

1

Hexadecimal Code

&#x2692; uses the Unicode hexadecimal value 2692 to display the Hammer and Pick symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2692 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+2692 is in Miscellaneous Symbols. Next: Hammer and Sickle (☭).

Use Cases

The Hammer and Pick symbol (⚒) is commonly used in:

🏗 Construction

Under-construction notices, contractor sites, and building projects.

🛠 DIY & crafting

Tool guides, home improvement, and maker content.

⛏ Mining

Mining industry pages, geology, and excavation topics.

🛒 Tool catalogs

E-commerce categories for hammers, picks, and hardware.

📋 Safety & training

Workplace safety and instructional materials.

🌐 Icon UIs

Universal tool or work indicator in multilingual interfaces.

💡 Best Practices

Do

  • Pair ⚒ with descriptive text (e.g. “Under construction”)
  • Use aria-label or visible labels for accessibility
  • Declare UTF-8 with <meta charset="utf-8">
  • Test glyph appearance across browsers and fonts
  • Use U+2692 when you need hammer and pick, not U+26CF alone

Don’t

  • Rely on ⚒ alone without context for screen readers
  • Confuse U+2692 (⚒) with U+262D (☭, hammer and sickle)
  • Expect a named HTML entity for U+2692
  • Use CSS \2692 in HTML text nodes
  • Assume decorative emoji fonts match U+2692 in every OS

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2692

&#x2692; &#9874;
2

For CSS, use \2692 in the content property

3

Unicode U+2692 — HAMMER AND PICK (⚒)

4

Not the same as pick-only U+26CF (⛏)

❓ Frequently Asked Questions

Use &#x2692; (hex), &#9874; (decimal), or \2692 in CSS content. There is no named entity. All three methods render the Hammer and Pick symbol (⚒) correctly.
U+2692 (HAMMER AND PICK). Miscellaneous Symbols block. Hex 2692, decimal 9874. Used for construction, mining, tools, and manual work contexts.
On construction and contractor sites, DIY and crafting pages, mining or geology content, tool catalogs, safety materials, resumes for trades, and icon-based UIs for tools or building work.
HTML references (&#9874; or &#x2692;) go in markup. The CSS escape \2692 is used in stylesheets, typically on ::before or ::after. Both produce ⚒.
U+2692 is HAMMER AND PICK (⚒). U+26CF is PICK (⛏) only. Choose the glyph that matches your meaning; they are different Unicode 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