On Friday, September 4, 2020 at 9:05:34 AM UTC-7, talha131 wrote: > > I understand that you can add an image to TW and then use it as icon for > tiddlers and tags. > Is it possible to use an emoji like 🇺🇸 as icon in TW? >
You can't *directly* use emojis as icons. However, in a recent discussion about tags, Tony described a simple technique for defining SVG images from emojis. For example, to define a music note icon, create a tiddler named "Music", containing <svg height="26px" width="24px"> <text x="0" y="24" fill="red">♫</text> </svg> Then, to use it as an icon for tiddlers or tags, just add an "icon" field with a value of "Music" to the desired tiddler/tag. Note: while you can copy/paste the emoji character directly into the SVG syntax, you can also use HTML entity syntax to enter the unicode value for the symbol. For example, the "Music" tiddler shown above could be written this way: <svg height="26px" width="24px"> <text x="0" y="24" fill="red">♫</text> </svg> You can find many unicode reference sites online. Here's a few: - https://en.wikipedia.org/wiki/List_of_Unicode_characters - https://unicode.org/charts/ - https://unicode.org/emoji/charts/full-emoji-list.html - https://emojipedia.org/ enjoy, -e -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/5ef83cf9-4954-4c28-b483-9122ea0a2c61o%40googlegroups.com.

