Skip to content

Instantly share code, notes, and snippets.

@laGameTV
Last active January 1, 2025 18:05
Show Gist options
  • Save laGameTV/1ef53c8073f51d0fefa0214fe561e32f to your computer and use it in GitHub Desktop.
Save laGameTV/1ef53c8073f51d0fefa0214fe561e32f to your computer and use it in GitHub Desktop.
Discord Emoji Regex Validator
const tests = [
"πŸ₯",
"🏠",
"⭐",
"πŸ€–",
"πŸ“°",
"πŸ—žοΈ",
"πŸ‘Ž",
"πŸ–οΈ",
"πŸ‘‹",
"🀚",
"πŸ₯³",
"πŸš‚",
"πŸ”§",
"Test",
"<:abc:12345678901234567>",
":SomeEmoji:",
"<:SomeEmoji:9876543210987654321>",
"<:D:1234509876543212345>",
"<:ABCD:876543210987654321>",
];
tests.forEach((test) => {
const isValid = /^(?:<a?:\w{2,32}:\d{17,19}>|[\p{Emoji}])$/u.test(test);
console.log(isValid, test);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment