Image Of

Shortcodes

Copy and paste codes for Image Of symbol ⊷ to use in your websites, apps, blogs, and more.

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

Customize Image Of Symbol

Customize ⊷ symbol as you like and download Image Of 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 Image Of symbol in HTML, CSS, and JS?

Insert ⊷ Image Of using HTML

1. Copy-paste Image Of directly:
<span>⊷</span>
2. HTML Decimal Code:
<span>&#8887;</span>
3. Hexadecimal Code:
<span>&#x22B7;</span>
Preview:

Add Image Of symbol with CSS

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

Image Of JavaScript Code

1. Direct Symbol:
document.querySelector('.image-of').textContent = '⊷';
2. Unicode Escape for ⊷:
document.querySelector('.image-of').textContent = '\u22B7';
Preview: