Emoticons plugin

This plugin adds a dialog to the editor that lets users insert emoji into TinyMCE’s editable area. The dialog can be invoked via a toolbar button - emoticons - or a dedicated menu item added as Insert > Emojis....

The emoticons plugin provides an autocompleter for adding emoji without using the toolbar button or menu item. Adding a colon :, followed by at least two characters will open a popup collection showing matching emoji.

The emoticons plugin does not automatically convert text emoticons into graphical emoji.

Basic setup

tinymce.init({
  selector: 'textarea',  // change this value according to your HTML
  plugins: 'emoticons',
  toolbar: 'emoticons'
});

Browser emoji support

By default, the emoticon plugin inserts Unicode character codes, such as \ud83d\ude03 for the smiley emoji. How emoji are rendered is dependent on the web browser and operating system of the user. As a result of this, some emoji may be rendered in black and white, or may not render. To ensure emoji render consistently across browsers and operating systems, Tiny recommends adding an emoji-compatible web font to the default font-family using content_css.

  • TinyMCE

  • HTML

  • JS

  • Edit on CodePen

<textarea id="emoticons">
  <p>To insert the 🙂 emoji, either:</p>
  <ul>
    <li>Start typing <code>:slightly_smiling_face</code>, and press <em>Enter</em> or&nbsp;<em>Return</em> to add the highlighted emoji, or click the desired emoji,</li>
    <li>Select the emoticons toolbar button and click the emoji in the emoticons dialog, or</li>
    <li>Open the <strong>Insert</strong> menu, select the <strong>Emoticons...</strong> option, and click the emoji in the emoticons dialog.</li>
  </ul>
</textarea>
tinymce.init({
  selector: 'textarea#emoticons',
  height: 300,
  plugins: 'lists code emoticons',
  toolbar: 'undo redo | styles | bold italic | ' +
    'alignleft aligncenter alignright alignjustify | ' +
    'outdent indent | numlist bullist | emoticons',
  emoticons_append: {
    custom_mind_explode: {
      keywords: ['brain', 'mind', 'explode', 'blown'],
      char: '🤯'
    }
  },
  content_style: 'body { font-family:Helvetica,Arial,sans-serif; font-size:16px }'
});

Options

The default database of emoji can be overridden or extended through the options below.

Internally, emojis are defined by an object mapping emoji names to additional details, whereby each entry represents a single emoji. The additional details should contain a unicode character representing the emoji, any keywords that can be used to search for the emoji and a category to place the emoji in. Options are expected to be provided in the same format.

{
  robot: {
    keywords: [ 'computer', 'machine', 'bot' ],
    char: '🤖',
    category: 'people'
  },
  dog: {
    keywords: [ 'animal', 'friend', 'nature', 'woof', 'puppy', 'pet', 'faithful' ],
    char: '🐶',
    category: 'animals_and_nature'
  }
}

emoticons_append

This option provides a way to append some additional emoji to the default emoji database. This should be an object in the above mentioned format.

Type: Object

Example: using emoticons_append

tinymce.init({
  selector: 'textarea',  // change this value according to your HTML
  plugins: 'emoticons',
  toolbar: 'emoticons',
  emoticons_append: {
    custom_mind_explode: {
      keywords: [ 'brain', 'mind', 'explode', 'blown' ],
      char: '🤯'
    }
  }
});

emoticons_database

This option provides the ability to specify which built-in emoji database to use when rendering emojis in the editor. The following built-in emoji databases are available:

  • emojis - This database uses Unicode characters to represent emoji in the editor content.

  • emojiimages - This database uses images provided by the Twitter Emoji (twemoji) project to represent emoji in the editor content.

    The emojiimages database provided by Tiny Technologies, Inc. uses Twitter Emoji (twemoji) graphics under the CC-BY 4.0 license agreement.

Type: String

Default value: 'emojis'

Example: using emoticons_database

tinymce.init({
  selector: 'textarea',  // change this value according to your HTML
  plugins: 'emoticons',
  toolbar: 'emoticons',
  emoticons_database: 'emojiimages'
});

emoticons_database_url

This option provides the default location to load the emoji database from. The database should be an external JavaScript file, that registers a tinymce.plugins.emoticons resource.

Type: String

Default value: '${pluginUrl}/js/emojis.js'

tinymce.Resource.add('tinymce.plugins.emoticons', {
  robot: {
    keywords: [ 'computer', 'machine', 'bot' ],
    char: '🤖',
    category: 'people'
  }
});

Example: using emoticons_database_url

tinymce.init({
  selector: 'textarea',  // change this value according to your HTML
  plugins: 'emoticons',
  toolbar: 'emoticons',
  emoticons_database_url: '/emojis.js'
});

emoticons_images_url

This option sets the base URL for the images used to represent emojis when using the emojiimages database.

By default, this option loads the required image assets from the Twemoji CDN. To use self-hosted emoji images, download the image assets from the Twitter Emoji (twemoji) GitHub repository.

Type: String

Default value: 'https://twemoji.maxcdn.com/v/13.0.1/72x72/'

Example: using emoticons_images_url

tinymce.init({
  selector: 'textarea',  // change this value according to your HTML
  plugins: 'emoticons',
  toolbar: 'emoticons',
  emoticons_database: 'emojiimages',
  emoticons_images_url: 'http://my.server/images/emoticons/'
});

Toolbar buttons

The Emoticons plugin provides the following toolbar buttons:

Toolbar button identifier Description

emoticons

Opens the Emojis dialog.

These toolbar buttons can be added to the editor using:

The Emoticons plugin provides the following menu items:

Menu item identifier Default Menu Location Description

emoticons

Insert

Opens the Emojis dialog.

These menu items can be added to the editor using:

Commands

The Emoticons plugin provides the following TinyMCE command.

Command Description

mceEmoticons

Opens the Emojis dialog.

Example
tinymce.activeEditor.execCommand('mceEmoticons');