Triple Colon Operator

Shortcodes

Copy useful codes for triple colon operator symbol ⫶ to use in websites, apps, blogs, and docs.

Unicode
U+2AF6
HTML Code
⫶
HEX Code
⫶
CSS Code
\2AF6
JS/JSON
\u2AF6
Unix/C/PHP/JAVA
0x2AF6
URL-encode
%E2%AB%B6

Customize Triple Colon Operator

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

  

How to use Triple Colon Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫶</span>
HTML Code:
<span>&#10998;</span>
HEX Code:
<span>&#x2AF6;</span>

Add with CSS

.triple-colon-operator::before {
  content: '\\2AF6';
}

Set it in JavaScript

document.querySelector('.triple-colon-operator').textContent = '⫶';
copied