Utility to convert strings with emoji shortcodes (:sushi:
) to strings with the
emoji unicode (🍣)
cargo add emoji-printer
```rs use emojiprinter::printemojis;
fn main() { let greeting = printemojis(":wavinghand: Hello, :globeshowingAmericas: World!"); println!("{}", greeting); // 👋 Hello, 🌎 World! } ```