Terminal control/Display an extended character: Difference between revisions

Terminal control/Display an extended character en Verilog
(Terminal control/Display an extended character en FreeBASIC)
(Terminal control/Display an extended character en Verilog)
Line 480:
<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.
 
 
=={{header|Verilog}}==
<lang Verilog>module main;
initial begin
$display("£");
end
endmodule</lang>
 
 
=={{header|Wren}}==
2,169

edits