| Nome del simbolo | Heavy Plus Sign |
| Versione Unicode | 6.0 |
| Unicode | U+2795 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2795 |
| Codice esadecimale | 0x2795 |
| Codice HTML | ➕ |
| LaTeX | \text{HEAVYPLUSSIGN} |
| Simbolo | ➕ |
| Codifica URL (percentuale UTF-8) | %E2%9E%95 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo heavy plus sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Heavy Plus Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |