0

The problem is simple:

Console.WriteLine("…");  // Unicode ellipsis U+2026, not three periods

Is shown in console as:

:

How to print it out correctly? Is it possible?

PS: Visual Studio 2017, Console Application, Raster Fonts in console window.

eocron
  • 6,885
  • 1
  • 21
  • 50

1 Answers1

2

You first need to change the encoding on the Console

Console.OutputEncoding = System.Text.Encoding.UTF8;

Then you can write it out

Console.WriteLine("\u2026");

or your version

Console.WriteLine("…");
Yuriy Faktorovich
  • 67,283
  • 14
  • 105
  • 142