To be specific:
ord(c) returns the decimal value corresponding to byte c (or ASCII character).
chr(i) returns the byte (or ASCII character) corresponding to decimal value i.
This means that, for example, you can echo every character supported by Blockland with:
for (%i = 1; %i < 256; %i++)
echo(%i SPC "=" SPC chr(%i));
Or convert string %s to ASCII codepoints with:
%length = strlen(%s);
for (%i = 0; %i < %length; %i++)
{
%char = getSubStr(%s, %i, 1);
echo("%s[" @ %i @ "] = " @ %char @ " => " @ ord(%char));
}