Terminal control/Display an extended character: Difference between revisions

Added implementation in C#.
(Added implementation in C#.)
Line 74:
return 0;
}</lang>
 
=={{header|C sharp}}==
<lang csharp>class Program
{
static void Main()
{
System.Console.WriteLine("£");
}
}</lang>
Output:
<pre>£</pre>
 
=={{header|C++}}==
Anonymous user