Ring Point

Shortcodes

Copy useful codes for ring point symbol ⸰ to use in websites, apps, blogs, and docs.

Unicode
U+2E30
HTML Code
⸰
HEX Code
⸰
CSS Code
\2E30
JS/JSON
\u2E30
Unix/C/PHP/JAVA
0x2E30
URL-encode
%E2%B8%B0

Customize Ring Point

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

  

How to use Ring Point Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸰</span>
HTML Code:
<span>&#11824;</span>
HEX Code:
<span>&#x2E30;</span>

Add with CSS

.ring-point::before {
  content: '\\2E30';
}

Set it in JavaScript

document.querySelector('.ring-point').textContent = '⸰';
copied