Flexed Biceps

๐Ÿ’ช

Shortcodes

Copy useful codes for flexed biceps symbol ๐Ÿ’ช to use in websites, apps, blogs, and docs.

Unicode
U+1F4AA
HTML Code
💪
HEX Code
💪
CSS Code
\1F4AA
JS/JSON
\u1F4AA
Unix/C/PHP/JAVA
0x1F4AA
URL-encode
%F0%9F%92%AA

Customize Flexed Biceps

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

๐Ÿ’ช
  

How to use Flexed Biceps Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ’ช</span>
HTML Code:
<span>&#128170;</span>
HEX Code:
<span>&#x1F4AA;</span>

Add with CSS

.flexed-biceps::before {
  content: '\\1F4AA';
}

Set it in JavaScript

document.querySelector('.flexed-biceps').textContent = '๐Ÿ’ช';
copied