Increment

Shortcodes

Copy and paste codes for Increment symbol ∆ to use in your websites, apps, blogs, and more.

Unicode
U+2206
HTML Code
∆
HEX Code
∆
CSS Code
\2206
JS/JSON
\u2206
Unix/C/PHP/JAVA
0x2206
URL-encode
%E2%88%86
copied

Customize Increment Symbol

Customize ∆ symbol as you like and download Increment as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Increment symbol in HTML, CSS, and JS?

Insert ∆ Increment using HTML

1. Copy-paste Increment directly:
<span>∆</span>
2. HTML Decimal Code:
<span>&#8710;</span>
3. Hexadecimal Code:
<span>&#x2206;</span>
Preview:

Add Increment symbol with CSS

.increment::before {
    content: '\\2206';
}
Preview: Increment

Increment JavaScript Code

1. Direct Symbol:
document.querySelector('.increment').textContent = '∆';
2. Unicode Escape for ∆:
document.querySelector('.increment').textContent = '\u2206';
Preview: