conversion_emoji
Look up emoji by glyph, name, keyword, category, or Unicode code point and retrieve Unicode metadata, UTF-8 bytes, and HTML entities.
Instructions
Emoji Unicode And Shortcode Lookup. Look up emoji by glyph, name, keyword, category, or Unicode code point and return Unicode metadata (code point, hex U+ form, decimal, UTF-8 bytes) plus HTML entities. Use this when you have one search term and want full Unicode/HTML detail for matching emoji; use conversion/emoji/random instead to sample random emoji without a query, and encoding/unicode or encoding/html-entities for escaping arbitrary text rather than looking up emoji. Pure client-style compute over a built-in ~170-emoji database (no network, no external API); read-only and non-destructive. Rate limited to 60 requests per minute for anonymous callers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Non-empty search term. Its meaning depends on search_type: an emoji glyph, an emoji name fragment, a keyword, an exact category id, or a Unicode code point (e.g. 1F600, U+1F600, 0x1F600). | |
| search_type | Yes | How to interpret query. 'emoji' matches an exact glyph; 'name' and 'keyword' do case-insensitive substring matches; 'category' is an exact category id; 'unicode' parses query as a hex code point. | name |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| success | No | True when the lookup completed. | |
| query | No | Echo of the submitted query. | |
| search_type | No | Echo of the search_type used. | |
| count | No | Number of entries in results. | |
| error | No | Error message when success is false; absent on success. | |
| results | No | Matching emoji entries (empty when none match). | |
| emoji_info | No | Reference metadata about the emoji database (Unicode/Emoji version, categories, ranges, search tips); present on success. |