Terminal control/Display an extended character: Difference between revisions

Content added Content deleted
(Add BaCon)
(Added Wren)
Line 440: Line 440:
<lang tcl>puts \u00a3</lang>
<lang tcl>puts \u00a3</lang>
Tcl can output all unicode characters in the BMP, but only if the consumer of the output (terminal, etc.) is able to understand those characters in its current encoding will the output actually make sense. Strictly, this is not a limitation of Tcl but of the environment in which it is placed.
Tcl can output all unicode characters in the BMP, but only if the consumer of the output (terminal, etc.) is able to understand those characters in its current encoding will the output actually make sense. Strictly, this is not a limitation of Tcl but of the environment in which it is placed.

=={{header|Wren}}==
<lang ecmascript>System.print("£")</lang>


=={{header|Xidel}}==
=={{header|Xidel}}==