246

I'm looking for the html code for the dot. Not the dot that's at the end of sentences but the dot that's used to separate items horizontally.

Item 1 . Item 2 . Item 3

The traditional dot is centered on the bottom of the line while the dot I'm looking for is centered on the middle.

MEE
  • 503
  • 1
  • 11
  • 21
frenchie
  • 51,731
  • 109
  • 304
  • 510

7 Answers7

436

There's actually seven variants of this:

    char   description          unicode   html       html entity    utf-8

    ·      Middle Dot           U+00B7    ·     ·       C2 B7
    ·      Greek Ano Teleia     U+0387    ·                    CE 87
    •      Bullet               U+2022    •    •         E2 80 A2
    ‧      Hyphenation Point    U+2027    ₁                   E2 80 A7
    ∙      Bullet Operator      U+2219    ∙                   E2 88 99
    ●      Black Circle         U+25CF    ●                   E2 97 8F
    ⬤     Black Large Circle   U+2B24    ⬤                  E2 AC A4

Depending on your viewing application or font, the Bullet Operator may seem very similar to either the Middle Dot or the Bullet.

Scott
  • 3,736
  • 2
  • 26
  • 44
RocketNuts
  • 9,958
  • 11
  • 47
  • 88
327

It's called a middle dot: ·

HTML entities:

  • ·
  • ·
  • ·

In CSS:

  • \00B7
Chris Martin
  • 30,334
  • 10
  • 78
  • 137
NotMe
  • 87,343
  • 27
  • 171
  • 245
149

Do you mean bulletpoints? • • •

•
Charlie Guo
  • 1,491
  • 1
  • 8
  • 2
55

That's a bullet: •

•
Robert C. Barth
  • 22,687
  • 6
  • 45
  • 52
29

The semantically correct character is the Interpunct, also known as middle dot, as HTML entity

·

Example

Home · Photos · About


You could also use the bullet point character, as HTML entity

•

Example

Home • Photos • About

splattne
  • 102,760
  • 52
  • 202
  • 249
5

Try the HTML code: •

Which will appear as: •

Inkbug
  • 1,682
  • 1
  • 10
  • 26
user5227346
  • 51
  • 1
  • 1
1

This can be done easily using ·. You can color or size the dot according to the tags you wrap it with. For example, try and run this

<h2> I &middot; love &middot; Coding </h2>
Sssssuppp
  • 683
  • 1
  • 7
  • 29