Character codes: Difference between revisions

added Fantom example
No edit summary
(added Fantom example)
Line 198:
<lang false>'A."
"65,</lang>
 
=={{header|Fantom}}==
 
A character is represented in single quotes: the 'toInt' method returns the code for the character. The 'toChar' method converts an integer into its respective character.
 
<lang fantom>
fansh> 97.toChar
a
fansh> 'a'.toInt
97
</lang>
 
=={{header|Forth}}==
342

edits