Terminal control/Display an extended character: Difference between revisions

PascalABC.NET
No edit summary
(PascalABC.NET)
 
(4 intermediate revisions by 3 users not shown)
Line 53:
 
<pre>£</pre>
 
=={{header|AutoHotkey}}==
 
<syntaxhighlight lang="autohotkey">msgbox % chr(163)</syntaxhighlight>
 
=={{header|AWK}}==
Line 323 ⟶ 327:
<syntaxhighlight lang="bash">
jq -rn '"£"'
</syntaxhighlight>
or, using the symbol's codepoint:
<syntaxhighlight lang="bash">
jq -nr '[163]|implode'
</syntaxhighlight>
or:
<syntaxhighlight lang="bash">
jq -nr '"\u00a3"'
</syntaxhighlight>
 
Line 399 ⟶ 411:
begin
write(chr( 163 ));
end.
</syntaxhighlight>
 
=={{header|PascalABC.NET}}==
<syntaxhighlight lang="delphi">
uses CRT;
 
begin
Print('£')
end.
</syntaxhighlight>
Line 548 ⟶ 569:
 
=={{header|Wren}}==
<syntaxhighlight lang="ecmascriptwren">System.print("£")</syntaxhighlight>
 
=={{header|Xidel}}==
246

edits