Dot Operator

Shortcodes

Copy and paste codes for Dot Operator symbol ⋅ to use in your websites, apps, blogs, and more.

Unicode
U+22C5
HTML Code
⋅
HEX Code
⋅
CSS Code
\22C5
JS/JSON
\u22C5
Unix/C/PHP/JAVA
0x22C5
URL-encode
%E2%8B%85
copied

Customize Dot Operator Symbol

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

Insert ⋅ Dot Operator using HTML

1. Copy-paste Dot Operator directly:
<span>⋅</span>
2. HTML Decimal Code:
<span>&#8901;</span>
3. Hexadecimal Code:
<span>&#x22C5;</span>
Preview:

Add Dot Operator symbol with CSS

.dot-operator::before {
    content: '\\22C5';
}
Preview: Dot Operator

Dot Operator JavaScript Code

1. Direct Symbol:
document.querySelector('.dot-operator').textContent = '⋅';
2. Unicode Escape for ⋅:
document.querySelector('.dot-operator').textContent = '\u22C5';
Preview: