Element Of With Dot Above

Shortcodes

Copy useful codes for element of with dot above symbol ⋵ to use in websites, apps, blogs, and docs.

Unicode
U+22F5
HTML Code
⋵
HEX Code
⋵
CSS Code
\22F5
JS/JSON
\u22F5
Unix/C/PHP/JAVA
0x22F5
URL-encode
%E2%8B%B5

Customize Element Of With Dot Above

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

  

How to use Element Of With Dot Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⋵</span>
HTML Code:
<span>&#8949;</span>
HEX Code:
<span>&#x22F5;</span>

Add with CSS

.element-of-with-dot-above::before {
  content: '\\22F5';
}

Set it in JavaScript

document.querySelector('.element-of-with-dot-above').textContent = '⋵';
copied