Large Blue Circle

๐Ÿ”ต

Shortcodes

Copy useful codes for large blue circle symbol ๐Ÿ”ต to use in websites, apps, blogs, and docs.

Unicode
U+1F535
HTML Code
🔵
HEX Code
🔵
CSS Code
\1F535
JS/JSON
\u1F535
Unix/C/PHP/JAVA
0x1F535
URL-encode
%F0%9F%94%B5

Customize Large Blue Circle

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

๐Ÿ”ต
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ”ต</span>
HTML Code:
<span>&#128309;</span>
HEX Code:
<span>&#x1F535;</span>

Add with CSS

.large-blue-circle::before {
  content: '\\1F535';
}

Set it in JavaScript

document.querySelector('.large-blue-circle').textContent = '๐Ÿ”ต';
copied