jdan avatar
jdan
nameOfUnicode
Script
Populated with the following: import { blob } from "https://esm.town/v/std/blob?v=12"; fetch("https://unicode.org/Public/UNIDATA/UnicodeData.txt").then(async function(response) { const text = await response.text(); const data = {}; text.split("\n").forEach((line) => { const [code, name] = line.split(";"); data[code] = name; }); await blob.setJSON("unicode_names", data); });
0
jdan avatar
jdan
emojiByCodepoints
Script
An interactive, runnable TypeScript val by jdan
0
jdan avatar
jdan
codepoints
Script
Returns an array of base-16 code points for a given unicode character @jdan.codepoints("πŸ˜‚"); // => ["1f602"] @jdan.codepoints("πŸ‡³πŸ‡΅"); // => ["1f1f3", "1f1f5"]
0
1
Next
jdan-emojiexploder.web.val.run
Updated: June 15, 2024