| Symboolnaam | Heavy Plus Sign |
| Unicode-versie | 6.0 |
| Unicode | U+2795 |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \2795 |
| Hexadecimale code | 0x2795 |
| HTML-code | ➕ |
| LaTeX | \text{HEAVYPLUSSIGN} |
| Symbool | ➕ |
| URL-codering (UTF-8 procent) | %E2%9E%95 |
| Uitgesproken naam / schermlezer | Heavy Plus Sign |
| UTF-8 | E2 9E 95 |
| UTF-16 | 2795 |
| UTF-32 | 00002795 |
1\documentclass{article}2\usepackage{pifont}3\text{HEAVYPLUSSIGN}4\end{document}Je kunt het heavy plus sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 10133 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "heavy plus sign", or use Unicode Hex Input with 2795.
Ctrl + Shift + U, type 2795, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with arrow symbol support.
1span.heavy-plus-sign::before { content: "\2795"; }1<span>➕</span>De weergave van het Heavy Plus Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u2795' or String.fromCodePoint(10133) |
| Python | '\N{HEAVY PLUS SIGN}' or chr(10133) |
| Rust | '\u{2795}' |
| C / C++ | UTF-8 source or wchar_t with U+2795 |
| Go | string(rune(0x2795)) |
| Ruby | "\u{2795}" |