function charToHex(character: string): string {
    return character.charCodeAt(0).toString(16);
}

export default charToHex;
