Large Circle

Shortcodes

Copy useful codes for large circle symbol ◯ to use in websites, apps, blogs, and docs.

Unicode
U+25EF
HTML Code
◧
HEX Code
◯
CSS Code
\25EF
JS/JSON
\u25EF
Unix/C/PHP/JAVA
0x25EF
URL-encode
%E2%97%AF

Customize Large Circle

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

  

How to use Large Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◯</span>
HTML Code:
<span>&#9703;</span>
HEX Code:
<span>&#x25EF;</span>

Add with CSS

.large-circle::before {
  content: '\\25EF';
}

Set it in JavaScript

document.querySelector('.large-circle').textContent = '◯';
copied