Non-decimal radices/Output: Difference between revisions

Line 1,324:
100.to_s(36) => 2s
</div>
 
=={{header|Run BASIC}}==
<lang runbasic>
print asc("X") ' convert to ascii
print chr$(169) ' ascii to character
print dechex$(255) ' decimal to hex
print hexdec("FF") ' hex to decimal
print str$(467) ' decimal to string
print val("27") ' string to decimal
</lang>
 
=={{header|Scheme}}==
Anonymous user