Tilde With Dot Below

Shortcodes

Copy useful codes for tilde with dot below symbol ⸟ to use in websites, apps, blogs, and docs.

Unicode
U+2E1F
HTML Code
⸟
HEX Code
⸟
CSS Code
\2E1F
JS/JSON
\u2E1F
Unix/C/PHP/JAVA
0x2E1F
URL-encode
%E2%B8%9F

Customize Tilde With Dot Below

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

  

How to use Tilde With Dot Below Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸟</span>
HTML Code:
<span>&#11807;</span>
HEX Code:
<span>&#x2E1F;</span>

Add with CSS

.tilde-with-dot-below::before {
  content: '\\2E1F';
}

Set it in JavaScript

document.querySelector('.tilde-with-dot-below').textContent = '⸟';
copied