| Symbol Name | Heavy Plus Sign |
| Unicode Version | 6.0 |
| Unicode | U+2795 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2795 |
| Hex Code | 0x2795 |
| HTML Code | ➕ |
| LaTeX | \text{HEAVYPLUSSIGN} |
| Symbol | ➕ |
| URL encode (UTF-8 percent) | %E2%9E%95 |
| Spoken / screen reader name | 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}You can type the heavy plus sign symbol on most modern devices with the help of following methods:
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>Heavy Plus Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |