Large Blue Diamond

🔷

Shortcodes

Copy useful codes for large blue diamond symbol 🔷 to use in websites, apps, blogs, and docs.

Unicode
U+1F537
HTML Code
🔷
HEX Code
🔷
CSS Code
\1F537
JS/JSON
\u1F537
Unix/C/PHP/JAVA
0x1F537
URL-encode
%F0%9F%94%B7

Customize Large Blue Diamond

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

🔷
  

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

Insert in HTML

1. Direct symbol:
<span>🔷</span>
HTML Code:
<span>&#128311;</span>
HEX Code:
<span>&#x1F537;</span>

Add with CSS

.large-blue-diamond::before {
  content: '\\1F537';
}

Set it in JavaScript

document.querySelector('.large-blue-diamond').textContent = '🔷';
copied