Rightwards Arrow With Dotted Stem

Shortcodes

Copy useful codes for rightwards arrow with dotted stem symbol ⤑ to use in websites, apps, blogs, and docs.

Unicode
U+2911
HTML Code
⤑
HEX Code
⤑
CSS Code
\2911
JS/JSON
\u2911
Unix/C/PHP/JAVA
0x2911
URL-encode
%E2%A4%91

Customize Rightwards Arrow With Dotted Stem

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

  

How to use Rightwards Arrow With Dotted Stem Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤑</span>
HTML Code:
<span>&#10513;</span>
HEX Code:
<span>&#x2911;</span>

Add with CSS

.rightwards-arrow-with-dotted-stem::before {
  content: '\\2911';
}

Set it in JavaScript

document.querySelector('.rightwards-arrow-with-dotted-stem').textContent = '⤑';
copied