Element Of Opening Upwards

Shortcodes

Copy useful codes for element of opening upwards symbol ⟒ to use in websites, apps, blogs, and docs.

Unicode
U+27D2
HTML Code
⟒
HEX Code
⟒
CSS Code
\27D2
JS/JSON
\u27D2
Unix/C/PHP/JAVA
0x27D2
URL-encode
%E2%9F%92

Customize Element Of Opening Upwards

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

  

How to use Element Of Opening Upwards Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟒</span>
HTML Code:
<span>&#10194;</span>
HEX Code:
<span>&#x27D2;</span>

Add with CSS

.element-of-opening-upwards::before {
  content: '\\27D2';
}

Set it in JavaScript

document.querySelector('.element-of-opening-upwards').textContent = '⟒';
copied