Get the charcode of a character.
npm install charcodeGet the charcode of a character.

``sh`
npm install charcode
`js
const charcode = require("charcode");
charcode("a");
//=> 97
charcode.from(97);
//=> "a"
`
#### input
Type: string
The character to get the charcode of.
#### input
Type: number`
The charcode to get the character of.