Dotted Right-pointing Angle

Shortcodes

Copy and paste codes for Dotted Right-pointing Angle symbol ⸖ to use in your websites, apps, blogs, and more.

Unicode
U+2E16
HTML Code
⸖
HEX Code
⸖
CSS Code
\2E16
JS/JSON
\u2E16
Unix/C/PHP/JAVA
0x2E16
URL-encode
%E2%B8%96
copied

Customize Dotted Right-pointing Angle Symbol

Customize ⸖ symbol as you like and download Dotted Right-pointing Angle 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 Dotted Right-pointing Angle symbol in HTML, CSS, and JS?

Insert ⸖ Dotted Right-pointing Angle using HTML

1. Copy-paste Dotted Right-pointing Angle directly:
<span>⸖</span>
2. HTML Decimal Code:
<span>&#11798;</span>
3. Hexadecimal Code:
<span>&#x2E16;</span>
Preview:

Add Dotted Right-pointing Angle symbol with CSS

.dotted-right-pointing-angle::before {
    content: '\\2E16';
}
Preview: Dotted Right-pointing Angle

Dotted Right-pointing Angle JavaScript Code

1. Direct Symbol:
document.querySelector('.dotted-right-pointing-angle').textContent = '⸖';
2. Unicode Escape for ⸖:
document.querySelector('.dotted-right-pointing-angle').textContent = '\u2E16';
Preview: