Horizontal line on the console?

command-line, console, line, terminal

Solution

Hyphen         ---------------------
Underscore     _____________________
EM Dash        —————————————————————
Horizontal Bar ―――――――――――――――――――――
Horizontal Box ─────────────────────

There is a big list of characters to try over at wikipedia.

The horizontal box drawing character is my recommendation. It is designed for this purpose

Problem

I want to print a horizontal line to the console. At the moment, I use `-----`, but there are small spaces between the single characters. Is there a better character I might use? `_` is not a viable option, as it is not vertically centered. Is there something like a middlescore, strikethrough (or whatever it's name is) character?

Original source