Terminal control/Display an extended character: Difference between revisions

Content added Content deleted
m (→‎{{header|REXX}}: added a comment.)
(→‎{{header|D}}: added D)
Line 106: Line 106:
return 0;
return 0;
}</lang>
}</lang>


=={{header|D}}==
Assuming unicode support on the terminal
<lang d>import std.stdio;

void main() {
writeln('\u00A3');
}</lang>
<pre>£</pre>


=={{header|Forth}}==
=={{header|Forth}}==