Public
Script
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Readme

Returns an array of base-16 code points for a given unicode character

@jdan.codepoints("πŸ˜‚");
// => ["1f602"]
@jdan.codepoints("πŸ‡³πŸ‡΅");
// => ["1f1f3", "1f1f5"]
1
2
3
export const codepoints = (str: string) => {
return [...str].map((part) => part.codePointAt(0).toString(16).toUpperCase());
};
October 23, 2023