discord.js emoji in embed code example

Example 1: 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 */

Example 2: how to send emoji as ID discord.js

msg.channel.send("<:bat_food_full:786954379223367710>");
//msg.channel.send("<:emoji_name:ID>");

/*---
To get ID, in discord; type "\" then the name of your emoji 

For Example, type
\:bat_food:
and it will return
<:bat_food:786554369626347415>
---*/