Character codes: Difference between revisions

Line 1,598:
A
65</pre>
 
=={{header|SPL}}==
In SPL all characters are used in UTF-16BE encoding.
<lang spl>
x = #.array("a")
#.output("a -> ",x[1]," ",x[2])
x = [0,98]
#.output("0 98 -> ",#.str(x))
</lang>
{{out}}
<pre>
a -> 0 97
0 98 -> b
</pre>
 
=={{header|Standard ML}}==
Anonymous user