use crate::Emoticon;
pub fn red_hair() -> Emoticon {
Emoticon("\u{1F9B0}".to_string())
}
pub fn curly_hair() -> Emoticon {
Emoticon("\u{1F9B1}".to_string())
}
pub fn white_hair() -> Emoticon {
Emoticon("\u{1F9B3}".to_string())
}
pub fn bald() -> Emoticon {
Emoticon("\u{1F9B2}".to_string())
}