如何将unicode字符转换为svg,然后转换为favicon

egu*_*eys 10 html javascript favicon svg

我想将这个 unicode 字符转换为 svg 格式。因为我想用它作为图标。我该如何简单地做到这一点?

NVR*_*VRM 12

一张衬垫,设置为网站图标:

document.head.appendChild(Object.assign(document.createElement("link"), {rel: "icon", href: "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'></text></svg>"}))
Run Code Online (Sandbox Code Playgroud)