Twemoji on packages #123
-
Idea Twemoji on packagesI was thinking of something really cool to create, and I thought of Twemoji right here. Let's literally create a thread about this here :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Imagine using Mee6 and not Skyra, FeelsBadMan /s Twemojis can be referenced by SVG such as https://raw.githubusercontent.com/twitter/twemoji/master/assets/svg/1f522.svg for 🔢. Because it's an SVG you can then pass your own width and height and you should be able to fit it along the text I think. In HTML: <img src="https://raw.githubusercontent.com/twitter/twemoji/master/assets/svg/1f522.svg" width="800" height="200"> Edit: As for how to get the codepoint, there are 2 ways. Through JS If you can copy the emoji (i.e. from Emojipedia) you can execute this: [..."🔢"].map(c => c.codePointAt(0).toString(16)); Replace Through the web 15-19-14_05-09-2021_.pn.mp4 |
Beta Was this translation helpful? Give feedback.
Imagine using Mee6 and not Skyra, FeelsBadMan /s
Twemojis can be referenced by SVG such as https://raw.githubusercontent.com/twitter/twemoji/master/assets/svg/1f522.svg for 🔢. Because it's an SVG you can then pass your own width and height and you should be able to fit it along the text I think.
In HTML:
Edit: As for how to get the codepoint, there are 2 ways.
Through JS
If you can copy the emoji (i.e. from Emojipedia) you can execute this:
Replace
🔢
with your emoji.Through the web
Follow this:
15-19-14_05-09-2021_.pn.mp4