Character codes: Difference between revisions

Content added Content deleted
m (added whitespace before the TOC (table of contents).)
No edit summary
Line 675: Line 675:
print chr$(charCode) 'prints a
print chr$(charCode) 'prints a
print asc(char$) 'prints 97</lang>
print asc(char$) 'prints 97</lang>

=={{header|Little}}==
<lang C>puts("Unicode value of ñ is ${scan("ñ", "%c")}");
printf("The code 241 in Unicode is the letter: %c.\n", 241);
</lang>


=={{header|LiveCode}}==
=={{header|LiveCode}}==