Triple Plus

Shortcodes

Copy useful codes for triple plus symbol ⧻ to use in websites, apps, blogs, and docs.

Unicode
U+29FB
HTML Code
⧻
HEX Code
⧻
CSS Code
\29FB
JS/JSON
\u29FB
Unix/C/PHP/JAVA
0x29FB
URL-encode
%E2%A7%BB

Customize Triple Plus

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

  

How to use Triple Plus Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧻</span>
HTML Code:
<span>&#10747;</span>
HEX Code:
<span>&#x29FB;</span>

Add with CSS

.triple-plus::before {
  content: '\\29FB';
}

Set it in JavaScript

document.querySelector('.triple-plus').textContent = '⧻';
copied