Ring Point

Shortcodes

Copy and paste codes for Ring Point symbol ⸰ to use in your websites, apps, blogs, and more.

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

Customize Ring Point Symbol

Customize ⸰ symbol as you like and download Ring Point as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Ring Point symbol in HTML, CSS, and JS?

Insert ⸰ Ring Point using HTML

1. Copy-paste Ring Point directly:
<span>⸰</span>
2. HTML Decimal Code:
<span>&#11824;</span>
3. Hexadecimal Code:
<span>&#x2E30;</span>
Preview:

Add Ring Point symbol with CSS

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

Ring Point JavaScript Code

1. Direct Symbol:
document.querySelector('.ring-point').textContent = '⸰';
2. Unicode Escape for ⸰:
document.querySelector('.ring-point').textContent = '\u2E30';
Preview: