Call Me Hand

🤙

Shortcodes

Copy useful codes for call me hand symbol 🤙 to use in websites, apps, blogs, and docs.

Unicode
U+1F919
HTML Code
🤙
HEX Code
🤙
CSS Code
\1F919
JS/JSON
\u1F919
Unix/C/PHP/JAVA
0x1F919
URL-encode
%F0%9F%A4%99

Customize Call Me Hand

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

🤙
  

How to use Call Me Hand Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>🤙</span>
HTML Code:
<span>&#129305;</span>
HEX Code:
<span>&#x1F919;</span>

Add with CSS

.call-me-hand::before {
  content: '\\1F919';
}

Set it in JavaScript

document.querySelector('.call-me-hand').textContent = '🤙';
copied