Emoji in Cloudant documents 🤔

Emoji are everywhere, but can they survive in a JSON data store?

Glynn Bird
3 min readMay 30, 2018

Cloudant and Apache CouchDB databases store their data as JSON documents so there’s only a handful of data types to choose from: strings, booleans, numbers, objects and arrays.

Here’s a document representing a person in a JSON:

Long gone are the days when we were limited to the ASCII character set in our code. In recent years, the characters we use to form sentences have go a lot more colourful.

Emoji on MacBook Pro keyboard. Photo by iabzd on Unsplash

Let’s try remodelling our document by using Emoji:

Is this valid? Will Cloudant accept documents like this? It turns out we’re good to go!

Emoji in JSON documents in the Cloudant dashboard

Cloudant is happy to store any valid JSON containing Unicode strings. Sometimes the Emojis render differently across devices depending on the character set used.

Can I use an Emoji as a key field?

Yes you can:

😀Emoji used as a document’s key _id field

Can I use an Emoji as a document attribute?

Yes you can:

Emoji used as keys in a JSON object.

What about in Map functions?

In JavaScript map functions, values of fields containing Emoji can be tested and Emoji keys and values can be emitted:

The JavaScript used to define the “map” part of a MapReduce operation may contain Emoji

Can I query using Emoji?

Yes you can:

Cloudant Query selectors can use Emoji too.

Why would I want an Emoji in a JSON document?

Just because you can do something, doesn’t mean you should.

In the above examples, I’m using Emojis like an enumerated data type where the symbols represent one of a set of allowed data values

  • Nationality: 🇬🇧 🇫🇷 🇩🇪 🇨🇳 🇯🇵
  • Mood: 😀 🤔 😐 ☹
  • Weather: ☀ ⛅ 🌧 🌪

Another use-case is the storage of Twitter, Slack, SMS or other strings that happen to contain Emoji in a JSON database. The data will be indexed correctly and can be queried and aggregated like any other data.

--

--