| Nom du symbole | Heavy Plus Sign |
| Version Unicode | 6.0 |
| Unicode | U+2795 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2795 |
| Code hexadécimal | 0x2795 |
| Code HTML | ➕ |
| LaTeX | \text{HEAVYPLUSSIGN} |
| Symbole | ➕ |
| Encodage URL (pourcent UTF-8) | %E2%9E%95 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole heavy plus sign sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Heavy Plus Sign dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |