Gear

Shortcodes

Copy useful codes for gear symbol ⚙ to use in websites, apps, blogs, and docs.

Unicode
U+2699
HTML Code
⚙
HEX Code
⚙
CSS Code
\2699
JS/JSON
\u2699
Unix/C/PHP/JAVA
0x2699
URL-encode
%E2%9A%99

Customize Gear

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

  

How to use Gear Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⚙</span>
HTML Code:
<span>&#9881;</span>
HEX Code:
<span>&#x2699;</span>

Add with CSS

.gear::before {
  content: '\\2699';
}

Set it in JavaScript

document.querySelector('.gear').textContent = '⚙';
copied