Circled Dash

Shortcodes

Copy and paste codes for Circled Dash symbol ⊝ to use in your websites, apps, blogs, and more.

Unicode
U+229D
HTML Code
⊝
HEX Code
⊝
CSS Code
\229D
JS/JSON
\u229D
Unix/C/PHP/JAVA
0x229D
URL-encode
%E2%8A%9D
copied

Customize Circled Dash Symbol

Customize ⊝ symbol as you like and download Circled Dash 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 Circled Dash symbol in HTML, CSS, and JS?

Insert ⊝ Circled Dash using HTML

1. Copy-paste Circled Dash directly:
<span>⊝</span>
2. HTML Decimal Code:
<span>&#8861;</span>
3. Hexadecimal Code:
<span>&#x229D;</span>
Preview:

Add Circled Dash symbol with CSS

.circled-dash::before {
    content: '\\229D';
}
Preview: Circled Dash

Circled Dash JavaScript Code

1. Direct Symbol:
document.querySelector('.circled-dash').textContent = '⊝';
2. Unicode Escape for ⊝:
document.querySelector('.circled-dash').textContent = '\u229D';
Preview: