pub fn get_by_shortcode(s: &str) -> Option<&'static Emoji>
Lookup an emoji by GitHub shortcode.
This take Ο(1) time.
let rocket = emojis::get_by_shortcode("rocket").unwrap(); assert_eq!(rocket, "🚀");