Middle Dot

·

Shortcodes

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

Unicode
U+00B7
Alt Code
0183
HTML Code
·
HTML Entity
·
HEX Code
·
CSS Code
\0B7
JS/JSON
\u00B7
Unix/C/PHP/JAVA
0xB7
URL-encode
%C2%B7
copied

Customize Middle Dot Symbol

Customize · symbol as you like and download Middle Dot 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 type Middle Dot symbol · ?

Using Middle Dot Alt Code:

You can type the Middle Dot symbol · using your keyboard by using the Alt Code for Middle Dot. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 0183 using the Numpad.
  3. Release the Alt key.

This will make the · appear on your screen.

How to add Middle Dot symbol in HTML, CSS, and JS?

Insert · Middle Dot using HTML

1. Copy-paste Middle Dot directly:
<span>·</span>
2. HTML Decimal Code:
<span>&#183;</span>
3. HTML Entity:
<span>&middot;</span>
4. Hexadecimal Code:
<span>&#x00B7;</span>
Preview: ·

Add Middle Dot symbol with CSS

.middle-dot::before {
    content: '\\0B7';
}
Preview: Middle Dot

Middle Dot JavaScript Code

1. Direct Symbol:
document.querySelector('.middle-dot').textContent = '·';
2. Unicode Escape for ·:
document.querySelector('.middle-dot').textContent = '\u00B7';
Preview: ·