Public
HTTP (deprecated)
  • jdan avatar
    nameOfUnicode
    @jdan
    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); });
    Script
  • jdan avatar
    codepoints
    @jdan
    Returns an array of base-16 code points for a given unicode character @jdan.codepoints("πŸ˜‚"); // => ["1f602"] @jdan.codepoints("πŸ‡³πŸ‡΅"); // => ["1f1f3", "1f1f5"]
    Script
  • iamseeley avatar
    threedEmoji
    @iamseeley
    3️⃣ πŸ‡© create 3d emojis and text with three.js example usage: include a container in your HTML <div id="3d-emoji" style="width: 300px; height: 300px;"></div> call the function after the DOM has loaded import { create3DEmoji } from 'https://esm.town/v/iamseeley/threedEmoji'; document.addEventListener('DOMContentLoaded', () => { create3DEmoji('😊', 300, 300); });
    Script
  • jdan avatar
    emojiByCodepoints
    @jdan
    An interactive, runnable TypeScript val by jdan
    Script
1
Next
iamseeley-emojiexploder.web.val.run
June 12, 2024