Chains

Shortcodes

Copy and paste codes for Chains symbol ⛓ to use in your websites, apps, blogs, and more.

Unicode
U+26D3
HTML Code
⛓
HEX Code
⛓
CSS Code
\26D3
JS/JSON
\u26D3
Unix/C/PHP/JAVA
0x26D3
URL-encode
%E2%9B%93
copied

Customize Chains Symbol

Customize ⛓ symbol as you like and download Chains 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 Chains symbol in HTML, CSS, and JS?

Insert ⛓ Chains using HTML

1. Copy-paste Chains directly:
<span>⛓</span>
2. HTML Decimal Code:
<span>&#9939;</span>
3. Hexadecimal Code:
<span>&#x26D3;</span>
Preview:

Add Chains symbol with CSS

.chains::before {
    content: '\\26D3';
}
Preview: Chains

Chains JavaScript Code

1. Direct Symbol:
document.querySelector('.chains').textContent = '⛓';
2. Unicode Escape for ⛓:
document.querySelector('.chains').textContent = '\u26D3';
Preview: