| Nome del simbolo | Black Heart Suit |
| Versione Unicode | 1.1 |
| Unicode | U+2665 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2665 |
| Codice esadecimale | 0x2665 |
| Codice HTML | ♥ |
| LaTeX | \heartsuit |
| Simbolo | ♥ |
| Codifica URL (percentuale UTF-8) | %E2%99%A5 |
| Nome parlato / screen reader | Black Heart Suit |
| UTF-8 | E2 99 A5 |
| UTF-16 | 2665 |
| UTF-32 | 00002665 |
1\documentclass{article}2\usepackage{pifont}3\heartsuit4\end{document}Puoi digitare il simbolo black heart suit sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9829 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "black heart suit", or use Unicode Hex Input with 2665.
Ctrl + Shift + U, type 2665, 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.heart-symbol::before { content: "\2665"; }1<span>♥</span>La rappresentazione del simbolo Black Heart Suit nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2665' or String.fromCodePoint(9829) |
| Python | '\N{BLACK HEART SUIT}' or chr(9829) |
| Rust | '\u{2665}' |
| C / C++ | UTF-8 source or wchar_t with U+2665 |
| Go | string(rune(0x2665)) |
| Ruby | "\u{2665}" |