Character codes: Difference between revisions

m
Added a Trith example.
No edit summary
m (Added a Trith example.)
Line 492:
EndLoop
EndPrgm</lang>
 
=={{header|Trith}}==
Characters are Unicode code points, so the solution is the same for Unicode characters as it is for ASCII characters:
<lang trith>"a" ord print
97 chr print</lang>
<lang trith>"π" ord print
960 chr print</lang>
 
=={{header|Visual Basic .NET}}==