Character codes: Difference between revisions

Add BaCon
(Add BaCon)
Line 214:
Output as it appears on the text display on the Apple II and Apple II plus, with the original text character ROM:
<pre>!=97</pre>
 
==={{header|BaCon}}===
<lang qbasic>' ASCII
c$ = "$"
PRINT c$, ": ", ASC(c$)
 
' UTF-8
uc$ = "€"
PRINT uc$, ": ", UCS(uc$), ", ", UCS(c$)</lang>
 
{{out}}
<pre>
$: 36
€: 8364, 36</pre>
 
=={{header|Batch File}}==
Anonymous user