pub static MERPERSON: With<Tone, Emoji>
Expand description

merperson 🧜

Since E5.0

Examples

use emojic::flat::MERPERSON;
use emojic::Tone;
use emojic::Gender;
use emojic::Hair;
use emojic::Pair;

println!("{}", MERPERSON); // 🧜 (`U+1F9DC`)
println!("{}", MERPERSON.tone(Tone::Light)); // 🧜🏻 (`U+1F9DC U+1F3FB`)
println!("{}", MERPERSON.tone(Tone::MediumLight)); // 🧜🏼 (`U+1F9DC U+1F3FC`)
println!("{}", MERPERSON.tone(Tone::Medium)); // 🧜🏽 (`U+1F9DC U+1F3FD`)
println!("{}", MERPERSON.tone(Tone::MediumDark)); // 🧜🏾 (`U+1F9DC U+1F3FE`)
println!("{}", MERPERSON.tone(Tone::Dark)); // 🧜🏿 (`U+1F9DC U+1F3FF`)