Large Purple Circle

๐ŸŸฃ

Shortcodes

Copy useful codes for large purple circle symbol ๐ŸŸฃ to use in websites, apps, blogs, and docs.

Unicode
U+1F7E3
HTML Code
🟣
HEX Code
🟣
CSS Code
\1F7E3
JS/JSON
\u1F7E3
Unix/C/PHP/JAVA
0x1F7E3
URL-encode
%F0%9F%9F%A3

Customize Large Purple Circle

Customize ๐ŸŸฃ, download it as SVG or PNG, or copy the generated HTML snippet.

๐ŸŸฃ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ŸŸฃ</span>
HTML Code:
<span>&#128995;</span>
HEX Code:
<span>&#x1F7E3;</span>

Add with CSS

.large-purple-circle::before {
  content: '\\1F7E3';
}

Set it in JavaScript

document.querySelector('.large-purple-circle').textContent = '๐ŸŸฃ';
copied