Public
Like
nameOfUnicode
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in miliseconds.
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