| Symboolnaam | Black Heart Suit |
| Unicode-versie | 1.1 |
| Unicode | U+2665 |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \2665 |
| Hexadecimale code | 0x2665 |
| HTML-code | ♥ |
| LaTeX | \heartsuit |
| Symbool | ♥ |
| URL-codering (UTF-8 procent) | %E2%99%A5 |
| Uitgesproken naam / schermlezer | Black Heart Suit |
| UTF-8 | E2 99 A5 |
| UTF-16 | 2665 |
| UTF-32 | 00002665 |
1\documentclass{article}2\usepackage{pifont}3\heartsuit4\end{document}Je kunt het black heart suit-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Black Heart Suit-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |