discord.js emoji info code example
Example: 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!