# Unicode Emojis

Minecraft's font is not capable of showing emojis in the chat. Hence, by default, emojis are translated to their alias form, e.g. 😎 becomes `:sunglasses:`.

{% hint style="info" %}
Looking to add Emojis to your in-game chat? Check out [Emojiful](https://www.curseforge.com/minecraft/mc-mods/emojiful) (non-affiliated).
{% endhint %}

If however, you know that your players' clients support Unicode emojis in their font, you can turn off this translation for everyone.

{% tabs %}
{% tab title="Translate Emojis" %}
{% code title="config/chatter/discord/theme.json5" %}

```javascript
{
	// ...

	// True if emojis should be treated as unicode - useful if your players' client supports emojis
	"useUnicodeEmojis": false,

	// ...
}
```

{% endcode %}
{% endtab %}

{% tab title="Keep Unicode Emojis" %}
{% code title="config/chatter/discord/theme.json5" %}

```javascript
{
	// ...

	// True if emojis should be treated as unicode - useful if your players' client supports emojis
	"useUnicodeEmojis": true,

	// ...
}
```

{% endcode %}
{% endtab %}
{% endtabs %}
