Tilde With Ring Above

Shortcodes

Copy useful codes for tilde with ring above symbol ⸛ to use in websites, apps, blogs, and docs.

Unicode
U+2E1B
HTML Code
⸛
HEX Code
⸛
CSS Code
\2E1B
JS/JSON
\u2E1B
Unix/C/PHP/JAVA
0x2E1B
URL-encode
%E2%B8%9B

Customize Tilde With Ring Above

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

  

How to use Tilde With Ring Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸛</span>
HTML Code:
<span>&#11803;</span>
HEX Code:
<span>&#x2E1B;</span>

Add with CSS

.tilde-with-ring-above::before {
  content: '\\2E1B';
}

Set it in JavaScript

document.querySelector('.tilde-with-ring-above').textContent = '⸛';
copied