Upwards Ancora

Shortcodes

Copy useful codes for upwards ancora symbol ⸕ to use in websites, apps, blogs, and docs.

Unicode
U+2E15
HTML Code
⸕
HEX Code
⸕
CSS Code
\2E15
JS/JSON
\u2E15
Unix/C/PHP/JAVA
0x2E15
URL-encode
%E2%B8%95

Customize Upwards Ancora

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

  

How to use Upwards Ancora Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸕</span>
HTML Code:
<span>&#11797;</span>
HEX Code:
<span>&#x2E15;</span>

Add with CSS

.upwards-ancora::before {
  content: '\\2E15';
}

Set it in JavaScript

document.querySelector('.upwards-ancora').textContent = '⸕';
copied