| Symbol Name | Heavy Heart Exclamation |
| Unicode Version | 1.1 |
| Unicode | U+2763 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2763 |
| Hex Code | 0x2763 |
| HTML Code | ❣ |
| LaTeX | \text{HEAVYHEARTEXCLAMATIONMARKORNAMENT} |
| Symbol | ❣ |
| URL encode (UTF-8 percent) | %E2%9D%A3 |
| Spoken / screen reader name | Heavy Heart Exclamation |
| UTF-8 | E2 9D A3 |
| UTF-16 | 2763 |
| UTF-32 | 00002763 |
1\documentclass{article}2\usepackage{pifont}3\text{HEAVYHEARTEXCLAMATIONMARKORNAMENT}4\end{document}You can type the heavy heart exclamation symbol on most modern devices with the help of following methods:
Alt + 10083 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "heavy heart exclamation", or use Unicode Hex Input with 2763.
Ctrl + Shift + U, type 2763, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with heart symbol support.
1span.heavy-heart-exclamation::before { content: "\2763"; }1<span>❣</span>Heavy Heart Exclamation symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2763' or String.fromCodePoint(10083) |
| Python | '\N{HEAVY HEART EXCLAMATION}' or chr(10083) |
| Rust | '\u{2763}' |
| C / C++ | UTF-8 source or wchar_t with U+2763 |
| Go | string(rune(0x2763)) |
| Ruby | "\u{2763}" |