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

How to convert unicode character to svg and then a favicon

我想把这个unicode字符转换成svg格式。因为我想将它用作网站图标。我该怎么做?

有免费且强大的在线 UI 工具,带有 .svg 导出选项。只需 copy/paste 符号并在导出选项卡中选择 SVG 或直接@导出放 .ico 扩展名。

这是预览 => https://www.figma.com/file/53fKioQQDobD4yVwSIMHqn/Untitled?node-id=0%3A1

一个班轮,设置为图标:

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>"}))