Small Blue Diamond

๐Ÿ”น

Shortcodes

Copy useful codes for small blue diamond symbol ๐Ÿ”น to use in websites, apps, blogs, and docs.

Unicode
U+1F539
HTML Code
🔹
HEX Code
🔹
CSS Code
\1F539
JS/JSON
\u1F539
Unix/C/PHP/JAVA
0x1F539
URL-encode
%F0%9F%94%B9

Customize Small Blue Diamond

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

๐Ÿ”น
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ”น</span>
HTML Code:
<span>&#128313;</span>
HEX Code:
<span>&#x1F539;</span>

Add with CSS

.small-blue-diamond::before {
  content: '\\1F539';
}

Set it in JavaScript

document.querySelector('.small-blue-diamond').textContent = '๐Ÿ”น';
copied