ord and chr

const ord = symbol => symbol.charCodeAt(0);
const chr = charCode => String.fromCharCode(charCode);