| Nome del simbolo | Heavy Heart Exclamation |
| Versione Unicode | 1.1 |
| Unicode | U+2763 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2763 |
| Codice esadecimale | 0x2763 |
| Codice HTML | ❣ |
| LaTeX | \text{HEAVYHEARTEXCLAMATIONMARKORNAMENT} |
| Simbolo | ❣ |
| Codifica URL (percentuale UTF-8) | %E2%9D%A3 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo heavy heart exclamation sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Heavy Heart Exclamation nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |