[](https://github.com/terhechte/emojito/blob/main/LICENSE.md)


# Emojito
``` toml
emojito = "0.2.1"
```
Find Emoji in strings. Supports complex emoji such as ๐จโ๐ฉโ๐งโ๐ฆ.
Uses the `unic-emoji-char` crate in the background, and does not rely on regexes.
## Usage
``` rs
let content = "Test ๐โค๏ธ! ๐ป๐ ๐จโ๐ฉโ๐ฆ kk ๐จโ๐ฉโ๐งโ๐ฆ";
let emojis = emojito::find_emoji(content);
assert_eq!(emojis.len(), 6);
```