Raised Hand

Shortcodes

Copy and paste codes for Raised Hand symbol ✋ to use in your websites, apps, blogs, and more.

Unicode
U+270B
HTML Code
✋
HEX Code
✋
CSS Code
\270B
JS/JSON
\u270B
Unix/C/PHP/JAVA
0x270B
URL-encode
%E2%9C%8B
copied

Customize Raised Hand Symbol

Customize ✋ symbol as you like and download Raised Hand as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Raised Hand symbol in HTML, CSS, and JS?

Insert ✋ Raised Hand using HTML

1. Copy-paste Raised Hand directly:
<span>✋</span>
2. HTML Decimal Code:
<span>&#9995;</span>
3. Hexadecimal Code:
<span>&#x270B;</span>
Preview:

Add Raised Hand symbol with CSS

.raised-hand::before {
    content: '\\270B';
}
Preview: Raised Hand

Raised Hand JavaScript Code

1. Direct Symbol:
document.querySelector('.raised-hand').textContent = '✋';
2. Unicode Escape for ✋:
document.querySelector('.raised-hand').textContent = '\u270B';
Preview: