Join

Shortcodes

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

Unicode
U+2A1D
HTML Code
⨝
HEX Code
⨝
CSS Code
\2A1D
JS/JSON
\u2A1D
Unix/C/PHP/JAVA
0x2A1D
URL-encode
%E2%A8%9D
copied

Customize Join Symbol

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

Insert ⨝ Join using HTML

1. Copy-paste Join directly:
<span>⨝</span>
2. HTML Decimal Code:
<span>&#10781;</span>
3. Hexadecimal Code:
<span>&#x2A1D;</span>
Preview:

Add Join symbol with CSS

.join::before {
    content: '\\2A1D';
}
Preview: Join

Join JavaScript Code

1. Direct Symbol:
document.querySelector('.join').textContent = '⨝';
2. Unicode Escape for ⨝:
document.querySelector('.join').textContent = '\u2A1D';
Preview: