Raised Dot

Shortcodes

Copy and paste codes for Raised Dot symbol ⸳ to use in your websites, apps, blogs, and more.

Unicode
U+2E33
HTML Code
⸳
HEX Code
⸳
CSS Code
\2E33
JS/JSON
\u2E33
Unix/C/PHP/JAVA
0x2E33
URL-encode
%E2%B8%B3
copied

Customize Raised Dot Symbol

Customize ⸳ symbol as you like and download Raised Dot 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 Raised Dot symbol in HTML, CSS, and JS?

Insert ⸳ Raised Dot using HTML

1. Copy-paste Raised Dot directly:
<span>⸳</span>
2. HTML Decimal Code:
<span>&#11827;</span>
3. Hexadecimal Code:
<span>&#x2E33;</span>
Preview:

Add Raised Dot symbol with CSS

.raised-dot::before {
    content: '\\2E33';
}
Preview: Raised Dot

Raised Dot JavaScript Code

1. Direct Symbol:
document.querySelector('.raised-dot').textContent = '⸳';
2. Unicode Escape for ⸳:
document.querySelector('.raised-dot').textContent = '\u2E33';
Preview: