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);
});
Migrated from folder: posts/emoji/deconstruct/nameOfUnicode