Two Joined Squares

Shortcodes

Copy and paste codes for Two Joined Squares symbol ⧉ to use in your websites, apps, blogs, and more.

Unicode
U+29C9
HTML Code
⧉
HEX Code
⧉
CSS Code
\29C9
JS/JSON
\u29C9
Unix/C/PHP/JAVA
0x29C9
URL-encode
%E2%A7%89
copied

Customize Two Joined Squares Symbol

Customize ⧉ symbol as you like and download Two Joined Squares 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 Two Joined Squares symbol in HTML, CSS, and JS?

Insert ⧉ Two Joined Squares using HTML

1. Copy-paste Two Joined Squares directly:
<span>⧉</span>
2. HTML Decimal Code:
<span>&#10697;</span>
3. Hexadecimal Code:
<span>&#x29C9;</span>
Preview:

Add Two Joined Squares symbol with CSS

.two-joined-squares::before {
    content: '\\29C9';
}
Preview: Two Joined Squares

Two Joined Squares JavaScript Code

1. Direct Symbol:
document.querySelector('.two-joined-squares').textContent = '⧉';
2. Unicode Escape for ⧉:
document.querySelector('.two-joined-squares').textContent = '\u29C9';
Preview: