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,230
  • 18
  • 46

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
  • 64,850
  • 14
  • 101
  • 138