summaryrefslogtreecommitdiff
path: root/deps/discord-haskell/docs/emoji.md
blob: ce3d3a9dd4d0a14c76b431f394780e90d3cef2f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

### Emoji

For single character Emoji you can use the unicode name ("eyes", "fire", etc).

For multi-character Emoji you must use the discord format. Type `\:emoji:` into
a discord chat and paste that into the Text

For example `:thumbsup::skin-tone-3:` is `"👍\127997"`.
A custom emoji will look like `<name:id_number>` or `name:id_number`.

See [examples/ping-pong.hs](https://github.com/discord-haskell/discord-haskell/blob/master/examples/ping-pong.hs)
 for a `CreateReaction` request in use.