HTML Entity for Double Exclamation Mark (‼)

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
U+203CGeneral Punctuation block
‼Hexadecimal reference
‼Decimal reference
—Not available for U+203C
Name Value
──────────── ──────────
Unicode U+203C
Hex code ‼
HTML code ‼
Named entity —
CSS code \203CComplete 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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\203C";
}
</style>
</head>
<body>
<p>Double Exclamation Mark using Hexadecimal: ‼</p>
<p>Double Exclamation Mark using HTML Code: ‼</p>
<p id="point">Double Exclamation Mark using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+203C is supported in modern browsers; use a font with General Punctuation coverage for consistent display:
👀 Live Preview
See the Double Exclamation Mark (‼) in emphasis and alert contexts:
🧠 How It Works
Hexadecimal Code
‼ uses the Unicode hexadecimal value 203C to display the Double Exclamation Mark symbol.
Decimal HTML Code
‼ uses the decimal Unicode value 8252 to display the same character.
CSS Entity
\203C is used in CSS stylesheets, particularly in the content property of ::before or ::after.
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:
UI labels, banners, and messages that need strong emphasis (e.g. Critical ‼).
Marketing copy, announcements, and urgent content using one character for !!.
Badges, tooltips, and buttons where ‼ saves space versus two exclamation marks.
Content that uses ‼ as an emoji-style mark on supporting platforms.
Pair ‼ with aria-label or visible text so screen readers convey warning intent.
Unicode and HTML entity guides for General Punctuation.
💡 Best Practices
Do
- Use
‼or‼for the ‼ character - Reserve ‼ for genuine emphasis or alerts—overuse reduces impact
- Use
\203Conly inside CSScontent - Pair alerts with
aria-labelor 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
\203Cin HTML text nodes - Rely on ‼ alone for critical warnings without accessible text
Key Takeaways
No named entity—use numeric references
‼ ‼For CSS stylesheets, use the escape in the content property
\203CUnicode U+203C DOUBLE EXCLAMATION MARK
Emphasis and alerts; can display as text or emoji on some systems
Three methods, one glyph — widely supported in modern browsers
❓ Frequently Asked Questions
‼ (hex), ‼ (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.!! with two regular exclamation marks, so U+203C has no named entity—use numeric codes or the CSS escape instead.‼ or ‼) 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.
8 people found this page helpful
