Tricolon

Shortcodes

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

Unicode
U+205D
HTML Code
⁝
HEX Code
⁝
CSS Code
\205D
JS/JSON
\u205D
Unix/C/PHP/JAVA
0x205D
URL-encode
%E2%81%9D
copied

Customize Tricolon Symbol

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

Insert ⁝ Tricolon using HTML

1. Copy-paste Tricolon directly:
<span>⁝</span>
2. HTML Decimal Code:
<span>&#8285;</span>
3. Hexadecimal Code:
<span>&#x205D;</span>
Preview:

Add Tricolon symbol with CSS

.tricolon::before {
    content: '\\205D';
}
Preview: Tricolon

Tricolon JavaScript Code

1. Direct Symbol:
document.querySelector('.tricolon').textContent = '⁝';
2. Unicode Escape for ⁝:
document.querySelector('.tricolon').textContent = '\u205D';
Preview: