Remove emojis from a string with JavaScript
Question:
How to remove emojis from a string with JavaScript? Answer:
const removeEmojis = (text) => {
if (!text) {
return '';
}
return text.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g, '');
}
Description:
Sometimes user inputs or API responses contains special characters like emojis. These special characters can cause problems later when saving data, for example, if the database does not support UTF-16 characters. But they can also be a problem from a design standpoint. In these cases, it may be necessary to remove the emojis from the text, which can be easily done with the replace
method.
Example input text: This is a text with emojis 😃👽🤷♂️🦊❤️
Output: This is a text with emojis
Reference:
String replace reference
Share "How to remove emojis from a string with JavaScript?"
Related snippets:
- Remove double quotes from a string in JavaScript
- Check if date is valid in JavaScript
- Check if a string is empty in JavaScript
- Check if string contains a substring in JavaScript
- Escape quotes in JavaScript
- Count the number of characters in a string with JavaScript
- Concatenate strings in JavaScript
- Check if string ends with slash using JavaScript
- Get the last character of a string in JavaScript
- Convert array to comma separated string using JavaScript
- Check if string contains a specific character using JavaScript
- Remove spaces from string at the beginning, end, or both in JavaScript
- Remove all extra spaces from a string in JavaScript
- Check if a string ends with number in JavaScript
- Remove specific character from a string in JavaScript
- Remove protocol from URL with JavaScript
- Remove emojis from a string with JavaScript
- Remove the last character from a string in JavaScript
- Count the number of words in a string using JavaScript
- Count the number of lines in a string in JavaScript
- Convert string to int in JavaScript
- Convert string to lowercase with JavaScript
- Generate random color with JavaScript
- Convert string to kebab case in JavaScript
- Convert snake case to camel case in JavaScript
- Capitalize words in a string using JavaScript
- Generate random string in JavaScript
- Generate UUID in JavaScript
- Convert string to character array in JavaScript
- Convert camel case to snake case in JavaScript
- Remove accents from a string in JavaScript
- Convert a string to sentence case in JavaScript
- Convert string to title case in JavaScript
- Convert string to snake case in JavaScript
- Convert string to pascal case in JavaScript
- Convert string to camel case in JavaScript
- Convert string to uppercase with JavaScript
- Convert object to JSON string in JavaScript
- Parse JSON string in JavaScript
- convert number to string in JavaScript
- Use colors in JavaScript console
- Get string length in JavaScript
- Split a string into words
- Replace line break with br in JavaScript
- Replace spaces with dashes in JavaScript
- Create multiline string in JavaScript
Tags:
remove, delete, emoji, icon, string, javascript Technical term:
Remove emojis from a string with JavaScript