Dotted Right-pointing Angle

Shortcodes

Copy useful codes for dotted right-pointing angle symbol ⸖ to use in websites, apps, blogs, and docs.

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

Customize Dotted Right-pointing Angle

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

  

How to use Dotted Right-pointing Angle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸖</span>
HTML Code:
<span>&#11798;</span>
HEX Code:
<span>&#x2E16;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.dotted-right-pointing-angle').textContent = '⸖';
copied