Dotted Solidus

Shortcodes

Copy and paste codes for Dotted Solidus symbol ⹊ to use in your websites, apps, blogs, and more.

Unicode
U+2E4A
HTML Code
⹊
HEX Code
⹊
CSS Code
\2E4A
JS/JSON
\u2E4A
Unix/C/PHP/JAVA
0x2E4A
URL-encode
%E2%B9%8A
copied

Customize Dotted Solidus Symbol

Customize ⹊ symbol as you like and download Dotted Solidus 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 Dotted Solidus symbol in HTML, CSS, and JS?

Insert ⹊ Dotted Solidus using HTML

1. Copy-paste Dotted Solidus directly:
<span>⹊</span>
2. HTML Decimal Code:
<span>&#11850;</span>
3. Hexadecimal Code:
<span>&#x2E4A;</span>
Preview:

Add Dotted Solidus symbol with CSS

.dotted-solidus::before {
    content: '\\2E4A';
}
Preview: Dotted Solidus

Dotted Solidus JavaScript Code

1. Direct Symbol:
document.querySelector('.dotted-solidus').textContent = '⹊';
2. Unicode Escape for ⹊:
document.querySelector('.dotted-solidus').textContent = '\u2E4A';
Preview: