Raised Fist

Shortcodes

Copy useful codes for raised fist symbol ✊ to use in websites, apps, blogs, and docs.

Unicode
U+270A
HTML Code
✊
HEX Code
✊
CSS Code
\270A
JS/JSON
\u270A
Unix/C/PHP/JAVA
0x270A
URL-encode
%E2%9C%8A

Customize Raised Fist

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

  

How to use Raised Fist Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✊</span>
HTML Code:
<span>&#9994;</span>
HEX Code:
<span>&#x270A;</span>

Add with CSS

.raised-fist::before {
  content: '\\270A';
}

Set it in JavaScript

document.querySelector('.raised-fist').textContent = '✊';
copied