Push Pin

๐Ÿ“Œ

Shortcodes

Copy useful codes for push pin symbol ๐Ÿ“Œ to use in websites, apps, blogs, and docs.

Unicode
U+1F4CC
HTML Code
📌
HEX Code
📌
CSS Code
\1F4CC
JS/JSON
\u1F4CC
Unix/C/PHP/JAVA
0x1F4CC
URL-encode
%F0%9F%93%8C

Customize Push Pin

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

๐Ÿ“Œ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ“Œ</span>
HTML Code:
<span>&#128204;</span>
HEX Code:
<span>&#x1F4CC;</span>

Add with CSS

.push-pin::before {
  content: '\\1F4CC';
}

Set it in JavaScript

document.querySelector('.push-pin').textContent = '๐Ÿ“Œ';
copied