Circled Dash

Shortcodes

Copy useful codes for circled dash symbol ⊝ to use in websites, apps, blogs, and docs.

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

Customize Circled Dash

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

  

How to use Circled Dash Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊝</span>
HTML Code:
<span>&#8861;</span>
HEX Code:
<span>&#x229D;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.circled-dash').textContent = '⊝';
copied