Terminal control/Display an extended character: Difference between revisions

m (→‎{{header|REXX}}: added a comment.)
(→‎{{header|D}}: added D)
Line 106:
return 0;
}</lang>
 
 
=={{header|D}}==
Assuming unicode support on the terminal
<lang d>import std.stdio;
 
void main() {
writeln('\u00A3');
}</lang>
<pre>£</pre>
 
=={{header|Forth}}==
Anonymous user