Bowtie

Shortcodes

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

Unicode
U+22C8
HTML Code
⋈
HEX Code
⋈
CSS Code
\22C8
JS/JSON
\u22C8
Unix/C/PHP/JAVA
0x22C8
URL-encode
%E2%8B%88
copied

Customize Bowtie Symbol

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

Insert ⋈ Bowtie using HTML

1. Copy-paste Bowtie directly:
<span>⋈</span>
2. HTML Decimal Code:
<span>&#8904;</span>
3. Hexadecimal Code:
<span>&#x22C8;</span>
Preview:

Add Bowtie symbol with CSS

.bowtie::before {
    content: '\\22C8';
}
Preview: Bowtie

Bowtie JavaScript Code

1. Direct Symbol:
document.querySelector('.bowtie').textContent = '⋈';
2. Unicode Escape for ⋈:
document.querySelector('.bowtie').textContent = '\u22C8';
Preview: