request: Custom emoji component for messages and embeds
See original GitHub issueWhat are your thoughts on a Discord-Emoji
component allowing developers to add custom server emojis to their messages?
This component could accept an emojiName
and emojiUrl
as properties. They would also be inline components which would be embedded in messages or text. Bot developers using custom emojis in their bots would definitely benefit from this feature.
For bot developers using custom emojis in their embed titles, what are your thoughts on including the ability to add custom emojis in embed titles and field names like so?
Discord Custom Emoji Examples


I’d be more than happy to help implement this if needed!
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (5 by maintainers)
Top Results From Across the Web
How to display an custom emoji within a bot message #390
It's <:emoji_name:emoji_id> for custom emojis. You can also find the discord.Emoji instance through Server.emojis and then cast it to str .
Read more >Discord Bot Embed Custom Emoji - Stack Overflow
It's easiest to get the Emoji object that represents your custom emoji, then use that to build your strings from discord.utils import get ......
Read more >Reactions - discord.js Guide
To react with an emoji, you need to use the message.react() method. ... For custom emojis, there are multiple ways of reacting.
Read more >Post Reaction with Emoji with Discord Bot API on New ...
Post Reaction with Emoji with Discord Bot API on New Requests from HTTP / Webhook ... Custom Request with HTTP / Webhook API...
Read more >EASY Styled Message/Custom Embeds | Discord - YouTube
Looking to create advanced Discord embeds or posts with embedded text, images, previews, links, buttons, dropdown options and more?
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
That’s very interesting @YoannMa. I never would’ve thought it could be done like that. Thanks!
You don’t need to create a mapping for the Twemoji as you can build the code from the name, I took the algorithm from https://github.com/twitter/twemoji and made my own helper to get the URL out of an emoji object
I haven’t tested all the different Twemoji, but I tested composed emoji like
:woman_factory_worker:
without issues.