HTML Entity for Double Exclamation Mark (‼)

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

What You'll Learn

How to display the Double Exclamation Mark (‼) in HTML using hexadecimal, decimal, and CSS entity methods. This character is U+203C in the General Punctuation block (U+2000–U+206F)—a single glyph for !!, used for emphasis, alerts, and excitement. It is also designated as an emoji.

There is no named HTML entity for U+203C. Use ‼, ‼, or \203C in CSS content. For a single exclamation, use the keyboard character ! or !.

⚡ Quick Reference — Double Exclamation Mark

Unicode U+203C

General Punctuation block

Hex Code ‼

Hexadecimal reference

HTML Code ‼

Decimal reference

Named Entity

Not available for U+203C

Reference Table
Name           Value
────────────   ──────────
Unicode        U+203C
Hex code       ‼
HTML code      ‼
Named entity   —
CSS code       \203C
1

Complete HTML Example

This example demonstrates the Double Exclamation Mark 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: "\203C";
  }
 </style>
</head>
<body>
<p>Double Exclamation Mark using Hexadecimal: &#x203C;</p>
<p>Double Exclamation Mark using HTML Code: &#8252;</p>
<p id="point">Double Exclamation Mark using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+203C is supported in modern browsers; use a font with General Punctuation coverage for consistent display:

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

👀 Live Preview

See the Double Exclamation Mark (‼) in emphasis and alert contexts:

Alert Warning ‼   Critical ‼
Emphasis Important ‼   Read this ‼
vs two chars ‼ one glyph   !! two characters
Large glyph
Monospace refs &#x203C; &#8252; \203C

🧠 How It Works

1

Hexadecimal Code

&#x203C; uses the Unicode hexadecimal value 203C to display the Double Exclamation Mark symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\203C is used in CSS stylesheets, particularly in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+203C is in General Punctuation (U+2000–U+206F). No named HTML entity exists.

Use Cases

The Double Exclamation Mark symbol (‼) is commonly used in:

⚠️ Alerts & warnings

UI labels, banners, and messages that need strong emphasis (e.g. Critical ‼).

📢 Emphasis & excitement

Marketing copy, announcements, and urgent content using one character for !!.

🎯 Compact UI

Badges, tooltips, and buttons where ‼ saves space versus two exclamation marks.

📱 Social & emoji

Content that uses ‼ as an emoji-style mark on supporting platforms.

♿ Accessibility

Pair ‼ with aria-label or visible text so screen readers convey warning intent.

🔤 Symbol references

Unicode and HTML entity guides for General Punctuation.

💡 Best Practices

Do

  • Use &#x203C; or &#8252; for the ‼ character
  • Reserve ‼ for genuine emphasis or alerts—overuse reduces impact
  • Use \203C only inside CSS content
  • Pair alerts with aria-label or semantic markup for accessibility
  • Keep hex or decimal style consistent across the document

Don’t

  • Assume a named entity exists for U+203C—it does not
  • Assume a named entity exists—only numeric codes and CSS work
  • Overuse ‼ in professional copy where plain !! or text is clearer
  • Put CSS escape \203C in HTML text nodes
  • Rely on ‼ alone for critical warnings without accessible text

Key Takeaways

1

No named entity—use numeric references

&#x203C; &#8252;
2

For CSS stylesheets, use the escape in the content property

\203C
3

Unicode U+203C DOUBLE EXCLAMATION MARK

4

Emphasis and alerts; can display as text or emoji on some systems

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x203C; (hex), &#8252; (decimal), or \203C in CSS content. There is no named HTML entity. All three methods render ‼.
U+203C (DOUBLE EXCLAMATION MARK). General Punctuation block (U+2000–U+206F). Hex 203C, decimal 8252. Used for emphasis and alerts; also designated as an emoji.
For emphasis, alerts, warnings, excitement, compact !! notation in UI labels, marketing copy, or any content that needs the ‼ character instead of two exclamation marks.
Named entities are usually reserved for ASCII and common symbols. You can type !! with two regular exclamation marks, so U+203C has no named entity—use numeric codes or the CSS escape instead.
HTML numeric references (&#8252; or &#x203C;) go in markup. The CSS escape \203C is used in stylesheets, typically in the content property of pseudo-elements. Both render ‼.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation marks, emphasis symbols, arrows, 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