declare global { interface Number { /** @summary convert number to character by charCode */ toChar(): string; } } Number.prototype.toChar = function() { return String.fromCharCode(this as number); }