HTML Entity for Caution Sign (☡)

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

What You'll Learn

How to display the Caution Sign (☡) in HTML using numeric references and CSS escapes. This character is U+2621 (CAUTION SIGN) in the Miscellaneous Symbols block (U+2600–U+26FF), approved in Unicode 1.1 (1993). It was introduced by the Nicolas Bourbaki group of mathematicians and marks passages that are tricky on first reading or contain especially difficult arguments.

There is no named HTML entity for U+2621. Use ☡, ☡, or \2621 in CSS content. Do not confuse ☡ with the general Warning Sign (⚠, U+26A0) or the Radioactive Sign (☢, U+2622).

⚡ Quick Reference — Caution Sign

Unicode U+2621

Miscellaneous Symbols block

Hex Code ☡

Hexadecimal reference

HTML Code ☡

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2621
Hex code       ☡
HTML code      ☡
Named entity   —
CSS code       \2621
1

Complete HTML Example

This example shows U+2621 using hexadecimal and decimal references plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2621";
  }
 </style>
</head>
<body>
<p>Caution Sign using Hexa Decimal: &#x2621;</p>
<p>Caution Sign using HTML Code: &#9761;</p>
<p id="point">Caution Sign using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Caution Sign entity is universally supported in all modern browsers:

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

👀 Live Preview

See the Caution Sign in mathematical and reference contexts:

Bourbaki marker ☡ The following lemma is non-trivial on first reading.
Large glyph
vs other signs Caution: ☡ (U+2621)   Warning: ⚠ (U+26A0)   Radioactive: ☢ (U+2622)
Math textbook ☡ Proof. Suppose G is a compact Hausdorff group…
Monospace refs &#x2621; &#9761; \2621

🧠 How It Works

1

Hexadecimal Code

&#x2621; uses the Unicode hexadecimal value 2621 to display the Caution Sign symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2621 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 the Caution Sign glyph: . Unicode U+2621 sits in the Miscellaneous Symbols block (U+2600–U+26FF).

Use Cases

The Caution Sign (☡) commonly appears in:

📐 Mathematics texts

Marking difficult passages, tricky arguments, and proofs needing careful reading.

📚 Academic publications

Bourbaki-style notation in algebra, analysis, and set theory textbooks.

⚠ Difficulty markers

Alerting readers to sections that need extra attention (not general safety warnings).

🎓 Educational content

Mathematics tutorials, proofs, and problem sets with difficulty indicators.

📝 Technical documentation

Marking sections with non-obvious logic or edge cases.

🔬 Research papers

Highlighting complex derivations or assumptions in scientific writing.

♿ Accessibility

Pair with text or aria-label="difficult passage" for screen readers.

💡 Best Practices

Do

  • Use &#x2621; or &#9761; for Bourbaki-style math caution
  • Place the symbol before passages that are tricky on first reading
  • Add aria-label="caution: difficult passage" when used decoratively
  • Choose fonts that support Miscellaneous Symbols (U+2600–U+26FF)
  • Declare <meta charset="utf-8"> for reliable rendering

Don’t

  • Use ☡ for general safety warnings (use ⚠ Warning Sign instead)
  • Confuse ☡ with ☢ (Radioactive) or ☣ (Biohazard)
  • Put CSS escape \2621 inside HTML text nodes
  • Rely on the symbol alone without accessible context
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML references both render ☡

&#x2621; &#9761;
2

For CSS stylesheets, use the escape in the content property

\2621
3

U+2621 CAUTION SIGN — Bourbaki mathematics notation

4

Marks difficult or tricky passages in math texts

5

Not the same as ⚠ (Warning Sign) or ☢ (Radioactive)

❓ Frequently Asked Questions

Use &#x2621; (hex), &#9761; (decimal), or \2621 in CSS content. All produce ☡. There is no named HTML entity.
U+2621 (CAUTION SIGN). Miscellaneous Symbols block (U+2600–U+26FF). Hex 2621, decimal 9761. Created by the Nicolas Bourbaki group for difficult mathematical passages.
For mathematics texts, academic publications, Bourbaki-style notation, and marking tricky or difficult passages—not for general safety or hazard warnings.
HTML numeric references (&#9761; or &#x2621;) go directly in markup. The CSS escape \2621 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. Use &#x2621;, &#9761;, or \2621 in CSS. Do not confuse ☡ with ⚠ (Warning Sign) or ☢ (Radioactive Sign).

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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