Safety Pin

🧷

Shortcodes

Copy useful codes for safety pin symbol 🧷 to use in websites, apps, blogs, and docs.

Unicode
U+1F9F7
HTML Code
🧷
HEX Code
🧷
CSS Code
\1F9F7
JS/JSON
\u1F9F7
Unix/C/PHP/JAVA
0x1F9F7
URL-encode
%F0%9F%A7%B7

Customize Safety Pin

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

🧷
  

How to use Safety Pin Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>🧷</span>
HTML Code:
<span>&#129527;</span>
HEX Code:
<span>&#x1F9F7;</span>

Add with CSS

.safety-pin::before {
  content: '\\1F9F7';
}

Set it in JavaScript

document.querySelector('.safety-pin').textContent = '🧷';
copied