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: 22 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 4 years ago)
- Default Branch: main
- Last Pushed: 2025-07-03T17:47:46.000Z (3 months ago)
- Last Synced: 2025-08-05T12:41:00.672Z (2 months ago)
- Topics: bangla, bengali, emoji, rust, unicode
- Language: Rust
- Homepage:
- Size: 150 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# emojicon
[](https://github.com/mominul/emojicon/actions?query=branch%3Amain)
[](https://crates.io/crates/emojicon)
[](https://docs.rs/emojicon/0.4.0/emojicon/)
[](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