Image Of

Shortcodes

Copy useful codes for image of symbol ⊷ to use in websites, apps, blogs, and docs.

Unicode
U+22B7
HTML Code
⊷
HEX Code
⊷
CSS Code
\22B7
JS/JSON
\u22B7
Unix/C/PHP/JAVA
0x22B7
URL-encode
%E2%8A%B7

Customize Image Of

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

  

How to use Image Of Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊷</span>
HTML Code:
<span>&#8887;</span>
HEX Code:
<span>&#x22B7;</span>

Add with CSS

.image-of::before {
  content: '\\22B7';
}

Set it in JavaScript

document.querySelector('.image-of').textContent = '⊷';
copied