Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mominul/emojicon
Find Emoji by using Emoticons and GitHub's, Bengali emoji names.
https://github.com/mominul/emojicon
bangla bengali emoji rust unicode
Last synced: 9 days ago
JSON representation
Find Emoji by using Emoticons and GitHub's, Bengali emoji names.
- Host: GitHub
- URL: https://github.com/mominul/emojicon
- Owner: mominul
- License: mit
- Created: 2021-06-06T17:52:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-19T17:41:02.000Z (10 months ago)
- Last Synced: 2024-10-17T16:29:10.354Z (29 days ago)
- Topics: bangla, bengali, emoji, rust, unicode
- Language: Rust
- Homepage:
- Size: 141 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# emojicon
[![Build Status](https://github.com/mominul/emojicon/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/mominul/emojicon/actions?query=branch%3Amain)
[![crates.io](https://img.shields.io/crates/v/emojicon.svg)](https://crates.io/crates/emojicon)
[![docs.rs](https://docs.rs/emojicon/badge.svg)](https://docs.rs/emojicon/0.4.0/emojicon/)
[![Rust](https://img.shields.io/badge/rust-1.56.0%2B-blue.svg?maxAge=3600)](https://blog.rust-lang.org/2021/10/21/Rust-1.56.0.html)Find Emoji by using Emoticons and GitHub's, Bengali emoji names.
```rust
use emojicon::{Emojicon, BengaliEmoji};
fn main() {
let emojicon = Emojicon::new();
assert_eq!(emojicon.get_by_emoticon("B-)"), Some("ð"));
assert_eq!(emojicon.get_by_name("cool").unwrap().collect::>(), ["ð", "ð"]);
let emojis = BengaliEmoji::new();
assert_eq!(emojis.get("āĶā§āĶē").unwrap().collect::>(), ["ð", "ð"]);
}
```## Acknowledgment
* [emoticon](https://github.com/wooorm/emoticon) by Titus Wormer
* [gemoji](https://github.com/github/gemoji) by Github
* [bnemo](https://github.com/faruk-ahmad/bnemo) by Faruk Ahmad