9

I'm trying to find a vertical dotted line ascii character. Currently I'm using ¦ but am hoping to find something more along the lines of the indent guide character that sublime text has:

enter image description here

Definitely doesn't have to be exact, but I'd like it to be more of a dotted line than a dashed line.

pizza247
  • 3,869
  • 7
  • 33
  • 47
  • Such lines are typically made by drawings on the window's background, not using character strings at all. – Remy Lebeau Dec 03 '13 at 02:15
  • @RemyLebeau yea, I know, but that wasn't an option for my application and I wanted to achieve a similar effect. – pizza247 Dec 03 '13 at 14:38

3 Answers3

15

There are a lot symbols like this at http://unicode-search.net/unicode-namesearch.pl?term=VERTICAL

such as: ⁞, ⋮, ┆, ┊, ┋, ┇, ︙,

I was looking for symbol like ⁞ but 6 dots whose name is "vertical six dots" and code point is U+2E3D, unfortunately, I was not able to copy/paste it here like others, since I couldn't get it displayed in my browser. If you know, please paste it in the comment section.

CodyChan
  • 1,776
  • 22
  • 35
5

As Funkotron_King said, there is nothing better in ASCII, if Unicode is an option you could use U+250B - ┋

mechanicalfish
  • 12,696
  • 3
  • 46
  • 41
1

Unfortunately the only dotted vertical line in ASCII is the colon (:) Html code &#58 hex code 3A.

For a list of all the ASCII chars follow this link.

http://www.asciitable.com/

Hope that helps

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770
Melbz
  • 512
  • 4
  • 14