Increment

Shortcodes

Copy useful codes for increment symbol ∆ to use in websites, apps, blogs, and docs.

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

Customize Increment

Customize ∆, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Increment Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∆</span>
HTML Code:
<span>&#8710;</span>
HEX Code:
<span>&#x2206;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.increment').textContent = '∆';
copied