Terminal control/Display an extended character: Difference between revisions

m
→‎{{header|Wren}}: Changed to Wren S/H
No edit summary
m (→‎{{header|Wren}}: Changed to Wren S/H)
 
(3 intermediate revisions by 2 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 548 ⟶ 560:
 
=={{header|Wren}}==
<syntaxhighlight lang="ecmascriptwren">System.print("£")</syntaxhighlight>
 
=={{header|Xidel}}==
9,476

edits