HTML Entity for Heavy Heart Exclamation Mark Ornament (❣)

What You'll Learn
How to display the Heavy Heart Exclamation Mark Ornament (❣) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2763 (HEAVY HEART EXCLAMATION MARK ORNAMENT) in the Dingbats block (U+2700–U+27BF). It combines a heart with an exclamation mark—ideal for love, emphasis, Valentine’s content, favorites, and any design that needs an expressive “heart with emphasis” style.
Render it with ❣, ❣, or CSS escape \2763. There is no named HTML entity. Do not confuse ❣ with U+2764 (❤, heavy black heart) or U+2762 (❢, heavy exclamation mark ornament without heart); each Dingbats ornament has a distinct glyph.
⚡ Quick Reference — Heart Exclamation Ornament
U+2763Dingbats block
❣Hexadecimal reference
❣Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2763
Hex code ❣
HTML code ❣
Named entity (none)
CSS code \2763
Meaning Heart exclamation ornament
Related U+2764 = heavy black heart (❤)
U+2762 = exclamation ornament (❢)Complete HTML Example
This example demonstrates the Heavy Heart Exclamation Mark Ornament (❣) using hexadecimal code, decimal HTML code, and a CSS content escape on a favorite button and love callout:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2763";
}
</style>
</head>
<body>
<p>Heart Exclamation using Hexadecimal: ❣</p>
<p>Heart Exclamation using HTML Code: ❣</p>
<p id="point">Heart Exclamation using CSS Entity</p>
</body>
</html>🌐 Browser Support
The Heavy Heart Exclamation Mark Ornament (❣) is widely supported in modern browsers when the font includes Dingbats heart glyphs:
👀 Live Preview
Heavy Heart Exclamation Mark Ornament (❣) in context, compared with related heart symbols:
🧠 How It Works
Hexadecimal Code
❣ uses the Unicode hexadecimal value 2763 to display the heart exclamation ornament. The x prefix indicates hexadecimal format.
Decimal HTML Code
❣ uses the decimal Unicode value 10083 to display the same character.
CSS Entity
\2763 is used in CSS stylesheets, particularly in content on ::before for favorite buttons, love callouts, and expressive accents.
Same visual result
All three methods produce ❣. Unicode U+2763 is in the Dingbats block. Next: Left Angle Bracket Ornament (❰).
Use Cases
The Heavy Heart Exclamation Mark Ornament (❣) is commonly used in:
Expressive “I love this” or emphasis in messages, captions, and social content.
Valentine’s Day content, romance themes, and love-related greetings.
Love or favorite buttons, wishlists, and positive feedback in UI.
Reactions, profile badges, and expressive love indicators in apps.
content: "\2763" on ::before without extra HTML markup.
Headers, cards, or accent characters for bold love and emphasis styling.
💡 Best Practices
Do
- Pair ❣ with
aria-label="Add to favorites"or visible button text - Use
content: "\2763 "via::beforeon love/favorite controls - Declare UTF-8 with
<meta charset="utf-8"> - Keep one numeric style (hex or decimal) per project
- Test glyph rendering in your font stack
- Use semantic
<button>for interactive favorite actions
Don’t
- Use ❣ alone on icon buttons without accessible names
- Confuse U+2763 (❣) with U+2764 (❤) or U+2762 (❢)
- Expect a named HTML entity for U+2763
- Use CSS
\2763in HTML text nodes - Rely on the glyph alone when a clear text label is required for clarity
Key Takeaways
Two HTML numeric references plus CSS insert U+2763
❣ ❣For CSS, use \2763 in the content property
Unicode U+2763 — heart exclamation ornament (❣)
Distinct from heavy black heart U+2764 (❤) and exclamation U+2762 (❢)
❓ Frequently Asked Questions
❣ (hex), ❣ (decimal), or \2763 in CSS content. There is no named entity. All three methods render the symbol (❣) correctly.U+2763 (HEAVY HEART EXCLAMATION MARK ORNAMENT). Dingbats block. Hex 2763, decimal 10083. The symbol (❣) is a heart with an exclamation mark, often used for love, emphasis, and expressive content.❣ or ❣) go in markup. The CSS escape \2763 is used in stylesheets, typically on ::before or ::after. Both produce ❣.❣) or decimal (❣) codes, which is standard for decorative Dingbats ornaments.Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, math, and more.
8 people found this page helpful
