Terminal control/Display an extended character: Difference between revisions

Added Befunge examples
(Added Befunge examples)
Line 78:
"
quit</lang>
 
=={{header|Befunge}}==
There's no portable way to print an extended character in Befunge, since character output will typically use the default code page of the operating system or environment. On Windows this will often be [[wp:Windows-1252|Windows-1252]] or [[wp:ISO/IEC 8859-1|ISO-8859-1]] for GUI applications and [[wp:Code page 437|Code page 437]] for console applications (but that also likely depends on the OS localisation).
 
Example output of a pound character in Code page 437:
<lang befunge>"| "+,@</lang>
 
Example output of a pound character in ISO-8859-1:
<lang befunge>"%~"+,@</lang>
 
=={{header|Bracmat}}==
Anonymous user