send emoji in discord.js code example

Example 1: discord.js emoji

// Do you know the name of the emoji? if so, you can simply do this:
message.channel.send("<:emoji name:emoji id>")
// If not, you could possibly do,
const emoji = bot.emojis.cache.get("emoji id")

message.channel.send(`${emoji}`
//I assume the emoji has to be cached for the method above to work, 
// i'm sure someone else could brew up a better solution. Hope i could help!

Example 2: discord.js emoji in embed

message.channel.send("<:NAMEHERE:IDHERE>")
// OR
const Emoji = "<:NAMEHERE:IDHERE>"
// HOW TO GET ID?
/* Right Click Emoji Inspect Find the link open in new tab
The ID Will be in the link */