diff --git a/Dalamud/Dalamud.csproj.DotSettings b/Dalamud/Dalamud.csproj.DotSettings new file mode 100644 index 000000000..9089754a3 --- /dev/null +++ b/Dalamud/Dalamud.csproj.DotSettings @@ -0,0 +1,3 @@ + +True +300000 diff --git a/Dalamud/Interface/FontAwesome/FontAwesomeCategoriesAttribute.cs b/Dalamud/Interface/FontAwesome/FontAwesomeCategoriesAttribute.cs new file mode 100644 index 000000000..62572057d --- /dev/null +++ b/Dalamud/Interface/FontAwesome/FontAwesomeCategoriesAttribute.cs @@ -0,0 +1,20 @@ +using System; + +namespace Dalamud.Interface; + +/// +/// Set categories associated with a font awesome icon. +/// +public class FontAwesomeCategoriesAttribute : Attribute +{ + /// + /// Initializes a new instance of the class. + /// + /// categories for enum member. + public FontAwesomeCategoriesAttribute(string[] categories) => this.Categories = categories; + + /// + /// Gets or sets categories. + /// + public string[] Categories { get; set; } +} diff --git a/Dalamud/Interface/FontAwesome/FontAwesomeExtensions.cs b/Dalamud/Interface/FontAwesome/FontAwesomeExtensions.cs new file mode 100644 index 000000000..2b8cb8c52 --- /dev/null +++ b/Dalamud/Interface/FontAwesome/FontAwesomeExtensions.cs @@ -0,0 +1,53 @@ +using System.Collections.Generic; + +using Dalamud.Utility; + +namespace Dalamud.Interface; + +/// +/// Extension methods for . +/// +public static class FontAwesomeExtensions +{ + /// + /// Convert the FontAwesomeIcon to a type. + /// + /// The icon to convert. + /// The converted icon. + public static char ToIconChar(this FontAwesomeIcon icon) + { + return (char)icon; + } + + /// + /// Convert the FontAwesomeIcon to a type. + /// + /// The icon to convert. + /// The converted icon. + public static string ToIconString(this FontAwesomeIcon icon) + { + return string.Empty + (char)icon; + } + + /// + /// Get FontAwesome search terms. + /// + /// The icon to pull search terms from. + /// string array of search terms or empty array if none. + public static IEnumerable GetSearchTerms(this FontAwesomeIcon icon) + { + var searchTermsAttribute = icon.GetAttribute(); + return searchTermsAttribute == null ? new string[] { } : searchTermsAttribute.SearchTerms; + } + + /// + /// Get FontAwesome categories. + /// + /// The icon to pull categories from. + /// string array of categories or empty array if none. + public static IEnumerable GetCategories(this FontAwesomeIcon icon) + { + var categoriesAttribute = icon.GetAttribute(); + return categoriesAttribute == null ? new string[] { } : categoriesAttribute.Categories; + } +} diff --git a/Dalamud/Interface/FontAwesome/FontAwesomeHelpers.cs b/Dalamud/Interface/FontAwesome/FontAwesomeHelpers.cs new file mode 100644 index 000000000..2259db148 --- /dev/null +++ b/Dalamud/Interface/FontAwesome/FontAwesomeHelpers.cs @@ -0,0 +1,117 @@ +using System; +using System.Collections.Generic; +using System.Linq; + +using Dalamud.Utility; + +namespace Dalamud.Interface; + +/// +/// Class containing various helper methods for use with Font Awesome inside Dalamud. +/// +public static class FontAwesomeHelpers +{ + /// + /// Get all non-obsolete icons. + /// + /// list of font awesome icons. + public static List GetIcons() + { + var icons = new List(); + foreach (var icon in Enum.GetValues(typeof(FontAwesomeIcon)).Cast().ToList()) + { + if (icon.IsObsolete()) continue; + icons.Add(icon); + } + + return icons; + } + + /// + /// Get all categories available on non-obsolete icons. + /// + /// list of font awesome icons. + public static string[] GetCategories() + { + var icons = GetIcons(); + var result = new List(); + foreach (var icon in icons) + { + var categories = icon.GetCategories(); + foreach (var category in categories) + { + if (!result.Contains(category)) + { + result.Add(category); + } + } + } + + result.Sort(); + result.Insert(0, string.Empty); + return result.ToArray(); + } + + /// + /// Get icons by search term. + /// + /// search term string. + /// name of category to filter by. + /// list array of font awesome icons matching search term. + public static List SearchIcons(string search, string category) + { + var icons = GetIcons(); + var result = new List(); + + // if no filters + if (string.IsNullOrEmpty(search) && string.IsNullOrEmpty(category)) + { + return icons; + } + + // if search with only search term + if (!string.IsNullOrEmpty(search) && string.IsNullOrEmpty(category)) + { + foreach (var icon in icons) + { + var name = Enum.GetName(icon)?.ToLower(); + var searchTerms = icon.GetSearchTerms(); + if (name!.Contains(search.ToLower()) || searchTerms.Contains(search.ToLower())) + { + result.Add(icon); + } + } + + return result; + } + + // if search with only category + if (string.IsNullOrEmpty(search) && !string.IsNullOrEmpty(category)) + { + foreach (var icon in icons) + { + var categories = icon.GetCategories(); + if (categories.Contains(category)) + { + result.Add(icon); + } + } + + return result; + } + + // search by both terms and category + foreach (var icon in icons) + { + var name = Enum.GetName(icon)?.ToLower(); + var searchTerms = icon.GetSearchTerms(); + var categories = icon.GetCategories(); + if ((name!.Contains(search.ToLower()) || searchTerms.Contains(search.ToLower())) && categories.Contains(category)) + { + result.Add(icon); + } + } + + return result; + } +} diff --git a/Dalamud/Interface/FontAwesome/FontAwesomeIcon.cs b/Dalamud/Interface/FontAwesome/FontAwesomeIcon.cs new file mode 100644 index 000000000..368ca55fe --- /dev/null +++ b/Dalamud/Interface/FontAwesome/FontAwesomeIcon.cs @@ -0,0 +1,12669 @@ +//------------------------------------------------------------------------------ +// +// Generated by Dalamud.FASharpGen - don't modify this file directly. +// Font-Awesome Version: 6.3.0 +// +//------------------------------------------------------------------------------ + +using System; + +namespace Dalamud.Interface; + +/// +/// Font Awesome unicode characters for use with the font. +/// +public enum FontAwesomeIcon +{ + /// + /// No icon. + /// + None = 0, + + /// + /// The Font Awesome "500px" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "500px" })] + _500Px = 0xF26E, + + /// + /// The Font Awesome "accessible-icon" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "accessible icon", "accessibility", "handicap", "person", "wheelchair", "wheelchair-alt" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Medical + Health", "Transportation", "Users + People" })] + AccessibleIcon = 0xF368, + + /// + /// The Font Awesome "accusoft" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "accusoft" })] + Accusoft = 0xF369, + + /// + /// The Font Awesome "acquisitionsincorporated" icon unicode character. + /// + [Obsolete] + AcquisitionsIncorporated = 0xF6AF, + + /// + /// The Font Awesome "rectangle-ad" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "rectangle ad", "advertisement", "media", "newspaper", "promotion", "publicity" })] + [FontAwesomeCategoriesAttribute(new[] { "Marketing" })] + Ad = 0xF641, + + /// + /// The Font Awesome "address-book" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "address book", "contact", "directory", "index", "little black book", "rolodex" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Users + People" })] + AddressBook = 0xF2B9, + + /// + /// The Font Awesome "address-card" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "address card", "about", "contact", "id", "identification", "postcard", "profile", "registration" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Users + People" })] + AddressCard = 0xF2BB, + + /// + /// The Font Awesome "circle-half-stroke" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle half stroke", "circle with left half black", "adjust", "chart", "contrast", "dark", "fill", "light", "pie", "progress", "saturation" })] + [FontAwesomeCategoriesAttribute(new[] { "Charts + Diagrams", "Design", "Editing", "Photos + Images", "Shapes" })] + Adjust = 0xF042, + + /// + /// The Font Awesome "adn" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "adn" })] + Adn = 0xF170, + + /// + /// The Font Awesome "adobe" icon unicode character. + /// + [Obsolete] + Adobe = 0xF778, + + /// + /// The Font Awesome "adversal" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "adversal" })] + Adversal = 0xF36A, + + /// + /// The Font Awesome "affiliatetheme" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "affiliatetheme" })] + Affiliatetheme = 0xF36B, + + /// + /// The Font Awesome "airbnb" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "airbnb" })] + Airbnb = 0xF834, + + /// + /// The Font Awesome "spray-can-sparkles" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "spray can sparkles", "car", "clean", "deodorize", "fresh", "pine", "scent" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive" })] + AirFreshener = 0xF5D0, + + /// + /// The Font Awesome "algolia" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "algolia" })] + Algolia = 0xF36C, + + /// + /// The Font Awesome "align-center" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "align center", "format", "middle", "paragraph", "text" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + AlignCenter = 0xF037, + + /// + /// The Font Awesome "align-justify" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "align justify", "format", "paragraph", "text" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + AlignJustify = 0xF039, + + /// + /// The Font Awesome "align-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "align left", "format", "paragraph", "text" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + AlignLeft = 0xF036, + + /// + /// The Font Awesome "align-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "align right", "format", "paragraph", "text" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + AlignRight = 0xF038, + + /// + /// The Font Awesome "alipay" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "alipay" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + Alipay = 0xF642, + + /// + /// The Font Awesome "hand-dots" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand dots", "allergy", "freckles", "hand", "hives", "palm", "pox", "skin", "spots" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands", "Medical + Health" })] + Allergies = 0xF461, + + /// + /// The Font Awesome "amazon" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "amazon" })] + Amazon = 0xF270, + + /// + /// The Font Awesome "amazon-pay" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "amazon pay" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + AmazonPay = 0xF42C, + + /// + /// The Font Awesome "truck-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck medical", "ambulance", "clinic", "covid-19", "emergency", "emt", "er", "help", "hospital", "mobile", "support", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Humanitarian", "Maps", "Medical + Health", "Transportation" })] + Ambulance = 0xF0F9, + + /// + /// The Font Awesome "hands-asl-interpreting" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hands asl interpreting", "asl", "deaf", "finger", "hand", "interpret", "speak" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Communication" })] + AmericanSignLanguageInterpreting = 0xF2A3, + + /// + /// The Font Awesome "amilia" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "amilia" })] + Amilia = 0xF36D, + + /// + /// The Font Awesome "anchor" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "anchor", "berth", "boat", "dock", "embed", "link", "maritime", "moor", "port", "secure", "ship", "tool" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maps", "Maritime" })] + Anchor = 0xF13D, + + /// + /// The Font Awesome "anchor-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "anchor circle check", "marina", "not affected", "ok", "okay", "port" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maritime" })] + AnchorCircleCheck = 0xE4AA, + + /// + /// The Font Awesome "anchor-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "anchor circle exclamation", "affected", "marina", "port" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maritime" })] + AnchorCircleExclamation = 0xE4AB, + + /// + /// The Font Awesome "anchor-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "anchor circle xmark", "destroy", "marina", "port" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maritime" })] + AnchorCircleXmark = 0xE4AC, + + /// + /// The Font Awesome "anchor-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "anchor lock", "closed", "lockdown", "marina", "port", "quarantine" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maritime" })] + AnchorLock = 0xE4AD, + + /// + /// The Font Awesome "android" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "android", "robot" })] + Android = 0xF17B, + + /// + /// The Font Awesome "angellist" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "angellist" })] + Angellist = 0xF209, + + /// + /// The Font Awesome "angles-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "angles down", "arrows", "caret", "download", "expand" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + AngleDoubleDown = 0xF103, + + /// + /// The Font Awesome "angles-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "angles left", "left-pointing double angle quotation mark", "arrows", "back", "caret", "laquo", "previous", "quote" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + AngleDoubleLeft = 0xF100, + + /// + /// The Font Awesome "angles-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "angles right", "right-pointing double angle quotation mark", "arrows", "caret", "forward", "more", "next", "quote", "raquo" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + AngleDoubleRight = 0xF101, + + /// + /// The Font Awesome "angles-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "angles up", "arrows", "caret", "collapse", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + AngleDoubleUp = 0xF102, + + /// + /// The Font Awesome "angle-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "angle down", "down arrowhead", "arrow", "caret", "download", "expand" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + AngleDown = 0xF107, + + /// + /// The Font Awesome "angle-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "angle left", "single left-pointing angle quotation mark", "arrow", "back", "caret", "less", "previous" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + AngleLeft = 0xF104, + + /// + /// The Font Awesome "angle-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "angle right", "single right-pointing angle quotation mark", "arrow", "care", "forward", "more", "next" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + AngleRight = 0xF105, + + /// + /// The Font Awesome "angle-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "angle up", "up arrowhead", "arrow", "caret", "collapse", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + AngleUp = 0xF106, + + /// + /// The Font Awesome "face-angry" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face angry", "angry", "angry face", "disapprove", "emoticon", "face", "mad", "upset" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + Angry = 0xF556, + + /// + /// The Font Awesome "angrycreative" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "angrycreative" })] + Angrycreative = 0xF36E, + + /// + /// The Font Awesome "angular" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "angular" })] + Angular = 0xF420, + + /// + /// The Font Awesome "ankh" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ankh", "ankh", "amulet", "copper", "coptic christianity", "copts", "crux ansata", "egypt", "venus" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Ankh = 0xF644, + + /// + /// The Font Awesome "apper" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "apper" })] + Apper = 0xF371, + + /// + /// The Font Awesome "apple" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "apple", "fruit", "ios", "mac", "operating system", "os", "osx" })] + Apple = 0xF179, + + /// + /// The Font Awesome "apple-whole" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "apple whole", "apple", "fall", "fruit", "fuji", "green", "green apple", "macintosh", "orchard", "red", "red apple", "seasonal", "vegan" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Education", "Food + Beverage", "Fruits + Vegetables" })] + AppleAlt = 0xF5D1, + + /// + /// The Font Awesome "apple-pay" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "apple pay" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + ApplePay = 0xF415, + + /// + /// The Font Awesome "app-store" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "app store" })] + AppStore = 0xF36F, + + /// + /// The Font Awesome "app-store-ios" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "app store ios" })] + AppStoreIos = 0xF370, + + /// + /// The Font Awesome "box-archive" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "box archive", "box", "package", "save", "storage" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Coding", "Files", "Moving", "Writing" })] + Archive = 0xF187, + + /// + /// The Font Awesome "archway" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "archway", "arc", "monument", "road", "street", "tunnel" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Travel + Hotel" })] + Archway = 0xF557, + + /// + /// The Font Awesome "circle-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle down", "arrow-circle-o-down", "download" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowAltCircleDown = 0xF358, + + /// + /// The Font Awesome "circle-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle left", "arrow-circle-o-left", "back", "previous" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowAltCircleLeft = 0xF359, + + /// + /// The Font Awesome "circle-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle right", "arrow-circle-o-right", "forward", "next" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowAltCircleRight = 0xF35A, + + /// + /// The Font Awesome "circle-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle up", "arrow-circle-o-up" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowAltCircleUp = 0xF35B, + + /// + /// The Font Awesome "circle-arrow-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle arrow down", "download" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowCircleDown = 0xF0AB, + + /// + /// The Font Awesome "circle-arrow-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle arrow left", "back", "previous" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowCircleLeft = 0xF0A8, + + /// + /// The Font Awesome "circle-arrow-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle arrow right", "forward", "next" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowCircleRight = 0xF0A9, + + /// + /// The Font Awesome "circle-arrow-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle arrow up", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowCircleUp = 0xF0AA, + + /// + /// The Font Awesome "arrow-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow down", "downwards arrow", "download" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowDown = 0xF063, + + /// + /// The Font Awesome "arrow-down-long" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow down long", "download", "long-arrow-down" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowDownLong = 0xF175, + + /// + /// The Font Awesome "arrow-down-up-across-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow down up across line", "border", "crossing", "transfer" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowDownUpAcrossLine = 0xE4AF, + + /// + /// The Font Awesome "arrow-down-up-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow down up lock", "border", "closed", "crossing", "lockdown", "quarantine", "transfer" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowDownUpLock = 0xE4B0, + + /// + /// The Font Awesome "arrow-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow left", "leftwards arrow", "back", "previous" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowLeft = 0xF060, + + /// + /// The Font Awesome "arrow-left-long" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow left long", "back", "long-arrow-left", "previous" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowLeftLong = 0xF177, + + /// + /// The Font Awesome "arrow-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow right", "rightwards arrow", "forward", "next" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowRight = 0xF061, + + /// + /// The Font Awesome "arrow-right-arrow-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow right arrow left", "rightwards arrow over leftwards arrow", "arrow", "arrows", "reciprocate", "return", "swap", "transfer" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowRightArrowLeft = 0xF0EC, + + /// + /// The Font Awesome "arrow-right-from-bracket" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow right from bracket", "arrow", "exit", "leave", "log out", "logout" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowRightFromBracket = 0xF08B, + + /// + /// The Font Awesome "arrow-right-long" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow right long", "forward", "long-arrow-right", "next" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowRightLong = 0xF178, + + /// + /// The Font Awesome "arrow-right-to-bracket" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow right to bracket", "arrow", "enter", "join", "log in", "login", "sign in", "sign up", "sign-in", "signin", "signup" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowRightToBracket = 0xF090, + + /// + /// The Font Awesome "arrow-right-to-city" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow right to city", "building", "city", "exodus", "rural", "urban" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + ArrowRightToCity = 0xE4B3, + + /// + /// The Font Awesome "up-down-left-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "up down left right", "arrow", "arrows", "bigger", "enlarge", "expand", "fullscreen", "move", "position", "reorder", "resize" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowsAlt = 0xF0B2, + + /// + /// The Font Awesome "left-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "left right", "arrow", "arrows-h", "expand", "horizontal", "landscape", "left-right arrow", "resize", "wide" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowsAltH = 0xF337, + + /// + /// The Font Awesome "up-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "up down", "up down black arrow", "arrow", "arrows-v", "expand", "portrait", "resize", "tall", "up-down arrow", "vertical" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowsAltV = 0xF338, + + /// + /// The Font Awesome "arrows-down-to-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows down to line", "scale down", "sink" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowsDownToLine = 0xE4B8, + + /// + /// The Font Awesome "arrows-down-to-people" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows down to people", "affected", "focus", "targeted" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + ArrowsDownToPeople = 0xE4B9, + + /// + /// The Font Awesome "arrows-left-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows left right", "expand", "horizontal", "landscape", "resize", "wide" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowsLeftRight = 0xF07E, + + /// + /// The Font Awesome "arrows-left-right-to-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows left right to line", "analysis", "expand", "gap" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowsLeftRightToLine = 0xE4BA, + + /// + /// The Font Awesome "arrows-spin" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows spin", "cycle", "rotate", "spin", "whirl" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Business", "Humanitarian", "Marketing", "Spinners" })] + ArrowsSpin = 0xE4BB, + + /// + /// The Font Awesome "arrows-split-up-and-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows split up and left", "agile", "split" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowsSplitUpAndLeft = 0xE4BC, + + /// + /// The Font Awesome "arrows-to-circle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows to circle", "center", "concentrate", "coordinate", "coordination", "focal point", "focus" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowsToCircle = 0xE4BD, + + /// + /// The Font Awesome "arrows-to-dot" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows to dot", "assembly point", "center", "condense", "focus", "minimize" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Business", "Humanitarian", "Marketing" })] + ArrowsToDot = 0xE4BE, + + /// + /// The Font Awesome "arrows-to-eye" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows to eye", "center", "coordinated assessment", "focus" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Business", "Humanitarian", "Marketing" })] + ArrowsToEye = 0xE4BF, + + /// + /// The Font Awesome "arrows-turn-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows turn right", "arrows" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowsTurnRight = 0xE4C0, + + /// + /// The Font Awesome "arrows-turn-to-dots" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows turn to dots", "destination", "nexus" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowsTurnToDots = 0xE4C1, + + /// + /// The Font Awesome "arrows-up-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows up down", "expand", "portrait", "resize", "tall", "vertical" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowsUpDown = 0xF07D, + + /// + /// The Font Awesome "arrows-up-down-left-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows up down left right", "arrow", "arrows", "bigger", "enlarge", "expand", "fullscreen", "move", "position", "reorder", "resize" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowsUpDownLeftRight = 0xF047, + + /// + /// The Font Awesome "arrows-up-to-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows up to line", "rise", "scale up" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowsUpToLine = 0xE4C2, + + /// + /// The Font Awesome "arrow-trend-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow trend down", "line", "stocks", "trend" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowTrendDown = 0xE097, + + /// + /// The Font Awesome "arrow-trend-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow trend up", "line", "stocks", "trend" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowTrendUp = 0xE098, + + /// + /// The Font Awesome "arrow-turn-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow turn down", "arrow" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowTurnDown = 0xF149, + + /// + /// The Font Awesome "arrow-turn-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow turn up", "arrow" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowTurnUp = 0xF148, + + /// + /// The Font Awesome "arrow-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up", "upwards arrow", "forward", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowUp = 0xF062, + + /// + /// The Font Awesome "arrow-up-from-bracket" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up from bracket", "share", "transfer", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowUpFromBracket = 0xE09A, + + /// + /// The Font Awesome "arrow-up-from-ground-water" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up from ground water", "groundwater", "spring", "water supply", "water table" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Energy", "Humanitarian" })] + ArrowUpFromGroundWater = 0xE4B5, + + /// + /// The Font Awesome "arrow-up-from-water-pump" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up from water pump", "flood", "groundwater", "pump", "submersible", "sump pump" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Humanitarian" })] + ArrowUpFromWaterPump = 0xE4B6, + + /// + /// The Font Awesome "arrow-up-long" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up long", "long-arrow-up", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ArrowUpLong = 0xF176, + + /// + /// The Font Awesome "arrow-up-right-dots" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up right dots", "growth", "increase", "population" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowUpRightDots = 0xE4B7, + + /// + /// The Font Awesome "arrow-up-right-from-square" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up right from square", "new", "open", "send", "share" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Humanitarian" })] + ArrowUpRightFromSquare = 0xF08E, + + /// + /// The Font Awesome "artstation" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "artstation" })] + Artstation = 0xF77A, + + /// + /// The Font Awesome "ear-listen" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ear listen", "amplify", "audio", "deaf", "ear", "headset", "hearing", "sound" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Communication" })] + AssistiveListeningSystems = 0xF2A2, + + /// + /// The Font Awesome "asterisk" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x2A. + /// + [FontAwesomeSearchTerms(new[] { "asterisk", "asterisk", "heavy asterisk", "annotation", "details", "reference", "star" })] + [FontAwesomeCategoriesAttribute(new[] { "Punctuation + Symbols", "Spinners" })] + Asterisk = 0xF069, + + /// + /// The Font Awesome "asymmetrik" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "asymmetrik" })] + Asymmetrik = 0xF372, + + /// + /// The Font Awesome "at" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x40. + /// + [FontAwesomeSearchTerms(new[] { "at", "commercial at", "address", "author", "e-mail", "email", "fluctuate", "handle" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Punctuation + Symbols" })] + At = 0xF1FA, + + /// + /// The Font Awesome "book-atlas" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book atlas", "book", "directions", "geography", "globe", "library", "map", "research", "travel", "wayfinding" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Travel + Hotel" })] + Atlas = 0xF558, + + /// + /// The Font Awesome "atlassian" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "atlassian" })] + Atlassian = 0xF77B, + + /// + /// The Font Awesome "atom" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "atheism", "atheist", "atom", "atom symbol", "chemistry", "electron", "ion", "isotope", "neutron", "nuclear", "proton", "science" })] + [FontAwesomeCategoriesAttribute(new[] { "Education", "Energy", "Religion", "Science", "Science Fiction", "Spinners" })] + Atom = 0xF5D2, + + /// + /// The Font Awesome "audible" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "audible" })] + Audible = 0xF373, + + /// + /// The Font Awesome "audio-description" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "audio description", "blind", "narration", "video", "visual" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Film + Video" })] + AudioDescription = 0xF29E, + + /// + /// The Font Awesome "austral-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "austral sign", "austral sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + AustralSign = 0xE0A9, + + /// + /// The Font Awesome "autoprefixer" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "autoprefixer" })] + Autoprefixer = 0xF41C, + + /// + /// The Font Awesome "avianex" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "avianex" })] + Avianex = 0xF374, + + /// + /// The Font Awesome "aviato" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "aviato" })] + Aviato = 0xF421, + + /// + /// The Font Awesome "award" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "award", "honor", "praise", "prize", "recognition", "ribbon", "trophy" })] + [FontAwesomeCategoriesAttribute(new[] { "Education", "Political" })] + Award = 0xF559, + + /// + /// The Font Awesome "aws" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "aws" })] + Aws = 0xF375, + + /// + /// The Font Awesome "baby" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "baby", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Humanitarian", "Users + People" })] + Baby = 0xF77C, + + /// + /// The Font Awesome "baby-carriage" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "baby carriage", "buggy", "carrier", "infant", "push", "stroller", "transportation", "walk", "wheels" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Transportation", "Travel + Hotel" })] + BabyCarriage = 0xF77D, + + /// + /// The Font Awesome "delete-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "delete left", "erase to the left", "command", "delete", "erase", "keyboard", "undo" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + Backspace = 0xF55A, + + /// + /// The Font Awesome "backward" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "backward", "arrow", "double", "fast reverse button", "previous", "rewind" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + Backward = 0xF04A, + + /// + /// The Font Awesome "bacon" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bacon", "blt", "breakfast", "food", "ham", "lard", "meat", "pancetta", "pork", "rasher" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage" })] + Bacon = 0xF7E5, + + /// + /// The Font Awesome "bacteria" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bacteria", "antibiotic", "antibody", "covid-19", "health", "organism", "sick" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Bacteria = 0xE059, + + /// + /// The Font Awesome "bacterium" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bacterium", "antibiotic", "antibody", "covid-19", "health", "organism", "sick" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + Bacterium = 0xE05A, + + /// + /// The Font Awesome "bahai" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bahai", "bahá'í", "star" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion", "Spinners" })] + Bahai = 0xF666, + + /// + /// The Font Awesome "baht-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "baht sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + BahtSign = 0xE0AC, + + /// + /// The Font Awesome "scale-balanced" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "scale balanced", "libra", "balance", "balance scale", "balanced", "justice", "law", "legal", "measure", "rule", "scale", "weight", "zodiac" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Humanitarian", "Maps", "Money", "Political" })] + BalanceScale = 0xF24E, + + /// + /// The Font Awesome "scale-unbalanced" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "scale unbalanced", "justice", "legal", "measure", "unbalanced", "weight" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Maps", "Money", "Political" })] + BalanceScaleLeft = 0xF515, + + /// + /// The Font Awesome "scale-unbalanced-flip" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "scale unbalanced flip", "justice", "legal", "measure", "unbalanced", "weight" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Maps", "Money", "Political" })] + BalanceScaleRight = 0xF516, + + /// + /// The Font Awesome "ban" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "abort", "ban", "block", "cancel", "delete", "entry", "forbidden", "hide", "no", "not", "prohibit", "prohibited", "remove", "stop", "trash" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security" })] + Ban = 0xF05E, + + /// + /// The Font Awesome "bandage" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "adhesive bandage", "bandage", "boo boo", "first aid", "ouch" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing", "Medical + Health" })] + BandAid = 0xF462, + + /// + /// The Font Awesome "bandcamp" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "bandcamp" })] + Bandcamp = 0xF2D5, + + /// + /// The Font Awesome "bangladeshi-taka-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bangladeshi taka sign", "bdt", "currency", "tk" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + BangladeshiTakaSign = 0xE2E6, + + /// + /// The Font Awesome "barcode" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "barcode", "info", "laser", "price", "scan", "upc" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Shopping" })] + Barcode = 0xF02A, + + /// + /// The Font Awesome "bars" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bars", "checklist", "drag", "hamburger", "list", "menu", "nav", "navigation", "ol", "reorder", "settings", "todo", "ul" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Editing" })] + Bars = 0xF0C9, + + /// + /// The Font Awesome "bars-progress" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bars progress", "checklist", "downloading", "downloads", "loading", "poll", "progress", "project management", "settings", "to do" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Charts + Diagrams" })] + BarsProgress = 0xF828, + + /// + /// The Font Awesome "baseball" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ball", "baseball", "foul", "glove", "hardball", "league", "leather", "mlb", "softball", "sport", "underarm" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + BaseballBall = 0xF433, + + /// + /// The Font Awesome "baseball-bat-ball" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "baseball bat ball", "bat", "league", "mlb", "slugger", "softball", "sport" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Sports + Fitness" })] + BaseballBatBall = 0xF432, + + /// + /// The Font Awesome "basketball" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ball", "basketball", "dribble", "dunk", "hoop", "nba" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + BasketballBall = 0xF434, + + /// + /// The Font Awesome "bath" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bath", "bathtub", "clean", "shower", "tub", "wash" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Coding", "Household", "Maps", "Travel + Hotel" })] + Bath = 0xF2CD, + + /// + /// The Font Awesome "battery-empty" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "battery empty", "charge", "dead", "power", "status" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy" })] + BatteryEmpty = 0xF244, + + /// + /// The Font Awesome "battery-full" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "battery full", "batter", "battery", "charge", "power", "status" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy" })] + BatteryFull = 0xF240, + + /// + /// The Font Awesome "battery-half" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "battery half", "charge", "power", "status" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy" })] + BatteryHalf = 0xF242, + + /// + /// The Font Awesome "battery-quarter" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "battery quarter", "charge", "low", "power", "status" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy" })] + BatteryQuarter = 0xF243, + + /// + /// The Font Awesome "battery-three-quarters" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "battery three quarters", "charge", "power", "status" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy" })] + BatteryThreeQuarters = 0xF241, + + /// + /// The Font Awesome "battle-net" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "battle net" })] + BattleNet = 0xF835, + + /// + /// The Font Awesome "bed" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bed", "hospital", "hotel", "lodging", "mattress", "patient", "person in bed", "rest", "sleep", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Humanitarian", "Maps", "Travel + Hotel", "Users + People" })] + Bed = 0xF236, + + /// + /// The Font Awesome "beer-mug-empty" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "beer mug empty", "alcohol", "ale", "bar", "beverage", "brew", "brewery", "drink", "foam", "lager", "liquor", "mug", "stein" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Maps" })] + Beer = 0xF0FC, + + /// + /// The Font Awesome "behance" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "behance" })] + Behance = 0xF1B4, + + /// + /// The Font Awesome "square-behance" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square behance" })] + BehanceSquare = 0xF1B5, + + /// + /// The Font Awesome "bell" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "alarm", "alert", "bel", "bell", "chime", "notification", "reminder" })] + [FontAwesomeCategoriesAttribute(new[] { "Alert", "Education", "Household", "Maps", "Shopping", "Social", "Time" })] + Bell = 0xF0F3, + + /// + /// The Font Awesome "bell-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bell slash", "alert", "bell", "bell with slash", "cancel", "disabled", "forbidden", "mute", "notification", "off", "quiet", "reminder", "silent" })] + [FontAwesomeCategoriesAttribute(new[] { "Alert", "Education", "Maps", "Time" })] + BellSlash = 0xF1F6, + + /// + /// The Font Awesome "bezier-curve" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bezier curve", "curves", "illustrator", "lines", "path", "vector" })] + [FontAwesomeCategoriesAttribute(new[] { "Design" })] + BezierCurve = 0xF55B, + + /// + /// The Font Awesome "book-bible" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book bible", "book", "catholicism", "christianity", "god", "holy" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Bible = 0xF647, + + /// + /// The Font Awesome "bicycle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bicycle", "bike", "gears", "pedal", "transportation", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Sports + Fitness", "Transportation" })] + Bicycle = 0xF206, + + /// + /// The Font Awesome "person-biking" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person biking", "bicycle", "bike", "biking", "cyclist", "pedal", "person biking", "summer", "wheel" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Sports + Fitness", "Users + People" })] + Biking = 0xF84A, + + /// + /// The Font Awesome "bimobject" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "bimobject" })] + Bimobject = 0xF378, + + /// + /// The Font Awesome "binoculars" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "binoculars", "glasses", "magnify", "scenic", "spyglass", "view" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Maps", "Nature" })] + Binoculars = 0xF1E5, + + /// + /// The Font Awesome "biohazard" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "biohazard", "covid-19", "danger", "dangerous", "epidemic", "hazmat", "medical", "pandemic", "radioactive", "sign", "toxic", "waste", "zombie" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Medical + Health", "Science" })] + Biohazard = 0xF780, + + /// + /// The Font Awesome "cake-candles" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cake candles", "anniversary", "bakery", "birthday", "birthday cake", "cake", "candles", "celebration", "dessert", "frosting", "holiday", "party", "pastry", "sweet" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Childhood", "Food + Beverage", "Maps", "Social" })] + BirthdayCake = 0xF1FD, + + /// + /// The Font Awesome "bitbucket" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "bitbucket", "atlassian", "bitbucket-square", "git" })] + Bitbucket = 0xF171, + + /// + /// The Font Awesome "bitcoin" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "bitcoin" })] + [FontAwesomeCategoriesAttribute(new[] { "Money", "Shopping" })] + Bitcoin = 0xF379, + + /// + /// The Font Awesome "bitcoin-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bitcoin sign", "bitcoin sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + BitcoinSign = 0xE0B4, + + /// + /// The Font Awesome "bity" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "bity" })] + Bity = 0xF37A, + + /// + /// The Font Awesome "blackberry" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "blackberry" })] + Blackberry = 0xF37B, + + /// + /// The Font Awesome "black-tie" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "black tie" })] + BlackTie = 0xF27E, + + /// + /// The Font Awesome "blender" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "blender", "cocktail", "milkshake", "mixer", "puree", "smoothie" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Household" })] + Blender = 0xF517, + + /// + /// The Font Awesome "blender-phone" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "blender phone", "appliance", "cocktail", "fantasy", "milkshake", "mixer", "puree", "silly", "smoothie" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Devices + Hardware" })] + BlenderPhone = 0xF6B6, + + /// + /// The Font Awesome "person-walking-with-cane" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person walking with cane", "blind", "cane" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Maps", "Users + People" })] + Blind = 0xF29D, + + /// + /// The Font Awesome "blog" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "blog", "journal", "log", "online", "personal", "post", "web 2.0", "wordpress", "writing" })] + [FontAwesomeCategoriesAttribute(new[] { "Writing" })] + Blog = 0xF781, + + /// + /// The Font Awesome "blogger" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "blogger" })] + Blogger = 0xF37C, + + /// + /// The Font Awesome "blogger-b" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "blogger b" })] + BloggerB = 0xF37D, + + /// + /// The Font Awesome "bluetooth" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "bluetooth", "signal" })] + [FontAwesomeCategoriesAttribute(new[] { "Connectivity" })] + Bluetooth = 0xF293, + + /// + /// The Font Awesome "bluetooth-b" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "bluetooth b" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication" })] + BluetoothB = 0xF294, + + /// + /// The Font Awesome "bold" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bold", "emphasis", "format", "text" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + Bold = 0xF032, + + /// + /// The Font Awesome "bolt" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bolt", "charge", "danger", "electric", "electricity", "flash", "high voltage", "lightning", "voltage", "weather", "zap" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Photos + Images", "Weather" })] + Bolt = 0xF0E7, + + /// + /// The Font Awesome "bolt-lightning" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bolt lightning", "electricity", "flash", "lightning", "weather", "zap" })] + [FontAwesomeCategoriesAttribute(new[] { "Photos + Images", "Weather" })] + BoltLightning = 0xE0B7, + + /// + /// The Font Awesome "bomb" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bomb", "comic", "error", "explode", "fuse", "grenade", "warning" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + Bomb = 0xF1E2, + + /// + /// The Font Awesome "bone" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bone", "calcium", "dog", "skeletal", "skeleton", "tibia" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Medical + Health" })] + Bone = 0xF5D7, + + /// + /// The Font Awesome "bong" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bong", "aparatus", "cannabis", "marijuana", "pipe", "smoke", "smoking" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Bong = 0xF55C, + + /// + /// The Font Awesome "book" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book", "cover", "decorated", "diary", "documentation", "journal", "library", "notebook", "notebook with decorative cover", "read", "research" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Maps", "Writing" })] + Book = 0xF02D, + + /// + /// The Font Awesome "book-bookmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book bookmark", "library", "research" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Writing" })] + BookBookmark = 0xE0BB, + + /// + /// The Font Awesome "book-skull" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book skull", "dungeons & dragons", "crossbones", "d&d", "dark arts", "death", "dnd", "documentation", "evil", "fantasy", "halloween", "holiday", "library", "necronomicon", "read", "research", "skull", "spell" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming", "Halloween" })] + BookDead = 0xF6B7, + + /// + /// The Font Awesome "bookmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bookmark", "favorite", "library", "mark", "marker", "read", "remember", "research", "save" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Shapes", "Shopping", "Writing" })] + Bookmark = 0xF02E, + + /// + /// The Font Awesome "book-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book medical", "diary", "documentation", "health", "history", "journal", "library", "read", "record", "research" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + BookMedical = 0xF7E6, + + /// + /// The Font Awesome "book-open" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book open", "book", "book", "flyer", "library", "notebook", "open", "open book", "pamphlet", "reading", "research" })] + [FontAwesomeCategoriesAttribute(new[] { "Education" })] + BookOpen = 0xF518, + + /// + /// The Font Awesome "book-open-reader" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book open reader", "flyer", "library", "notebook", "open book", "pamphlet", "reading", "research" })] + [FontAwesomeCategoriesAttribute(new[] { "Education" })] + BookReader = 0xF5DA, + + /// + /// The Font Awesome "book-tanakh" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book tanakh", "book", "jewish", "judaism", "religion" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + BookTanakh = 0xF827, + + /// + /// The Font Awesome "bootstrap" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "bootstrap" })] + Bootstrap = 0xF836, + + /// + /// The Font Awesome "border-all" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "border all", "cell", "grid", "outline", "stroke", "table" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + BorderAll = 0xF84C, + + /// + /// The Font Awesome "border-none" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "border none", "cell", "grid", "outline", "stroke", "table" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + BorderNone = 0xF850, + + /// + /// The Font Awesome "border-top-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "border top left", "cell", "outline", "stroke", "table" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + BorderStyle = 0xF853, + + /// + /// The Font Awesome "bore-hole" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bore hole", "bore", "bury", "drill", "hole" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Humanitarian" })] + BoreHole = 0xE4C3, + + /// + /// The Font Awesome "bottle-droplet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bottle droplet", "alcohol", "drink", "oil", "olive oil", "wine" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Humanitarian" })] + BottleDroplet = 0xE4C4, + + /// + /// The Font Awesome "bottle-water" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bottle water", "h2o", "plastic", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Food + Beverage", "Humanitarian" })] + BottleWater = 0xE4C5, + + /// + /// The Font Awesome "bowl-food" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bowl food", "catfood", "dogfood", "food", "rice" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Humanitarian" })] + BowlFood = 0xE4C6, + + /// + /// The Font Awesome "bowling-ball" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bowling ball", "alley", "candlepin", "gutter", "lane", "strike", "tenpin" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + BowlingBall = 0xF436, + + /// + /// The Font Awesome "bowl-rice" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bowl rice", "boiled", "cooked", "cooked rice", "rice", "steamed" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Humanitarian" })] + BowlRice = 0xE2EB, + + /// + /// The Font Awesome "box" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "archive", "box", "container", "package", "parcel", "storage" })] + [FontAwesomeCategoriesAttribute(new[] { "Logistics" })] + Box = 0xF466, + + /// + /// The Font Awesome "boxes-stacked" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "boxes stacked", "archives", "inventory", "storage", "warehouse" })] + [FontAwesomeCategoriesAttribute(new[] { "Logistics" })] + Boxes = 0xF468, + + /// + /// The Font Awesome "boxes-packing" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "boxes packing", "archive", "box", "package", "storage", "supplies" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Humanitarian", "Logistics", "Moving" })] + BoxesPacking = 0xE4C7, + + /// + /// The Font Awesome "box-open" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "box open", "archive", "container", "package", "storage", "unpack" })] + [FontAwesomeCategoriesAttribute(new[] { "Moving" })] + BoxOpen = 0xF49E, + + /// + /// The Font Awesome "box-tissue" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "box tissue", "cough", "covid-19", "kleenex", "mucus", "nose", "sneeze", "snot" })] + [FontAwesomeCategoriesAttribute(new[] { "Household" })] + BoxTissue = 0xE05B, + + /// + /// The Font Awesome "braille" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "braille", "alphabet", "blind", "dots", "raised", "vision" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility" })] + Braille = 0xF2A1, + + /// + /// The Font Awesome "brain" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "brain", "cerebellum", "gray matter", "intellect", "intelligent", "medulla oblongata", "mind", "noodle", "wit" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Science" })] + Brain = 0xF5DC, + + /// + /// The Font Awesome "brazilian-real-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "brazilian real sign", "brazilian real sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + BrazilianRealSign = 0xE46C, + + /// + /// The Font Awesome "bread-slice" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bread slice", "bake", "bakery", "baking", "dough", "flour", "gluten", "grain", "sandwich", "sourdough", "toast", "wheat", "yeast" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage" })] + BreadSlice = 0xF7EC, + + /// + /// The Font Awesome "bridge" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bridge", "road" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maps" })] + Bridge = 0xE4C8, + + /// + /// The Font Awesome "bridge-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bridge circle check", "bridge", "not affected", "ok", "okay", "road" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics" })] + BridgeCircleCheck = 0xE4C9, + + /// + /// The Font Awesome "bridge-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bridge circle exclamation", "affected", "bridge", "road" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics" })] + BridgeCircleExclamation = 0xE4CA, + + /// + /// The Font Awesome "bridge-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bridge circle xmark", "bridge", "destroy", "road" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics" })] + BridgeCircleXmark = 0xE4CB, + + /// + /// The Font Awesome "bridge-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bridge lock", "bridge", "closed", "lockdown", "quarantine", "road" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics" })] + BridgeLock = 0xE4CC, + + /// + /// The Font Awesome "bridge-water" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bridge water", "bridge", "road" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maps" })] + BridgeWater = 0xE4CE, + + /// + /// The Font Awesome "briefcase" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bag", "briefcas", "briefcase", "business", "luggage", "office", "work" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Maps", "Travel + Hotel" })] + Briefcase = 0xF0B1, + + /// + /// The Font Awesome "briefcase-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "briefcase medical", "doctor", "emt", "first aid", "health" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + BriefcaseMedical = 0xF469, + + /// + /// The Font Awesome "tower-broadcast" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tower broadcast", "airwaves", "antenna", "communication", "emergency", "radio", "reception", "waves" })] + [FontAwesomeCategoriesAttribute(new[] { "Connectivity", "Energy", "Film + Video", "Humanitarian" })] + BroadcastTower = 0xF519, + + /// + /// The Font Awesome "broom" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "broom", "clean", "cleaning", "firebolt", "fly", "halloween", "nimbus 2000", "quidditch", "sweep", "sweeping", "witch" })] + [FontAwesomeCategoriesAttribute(new[] { "Halloween" })] + Broom = 0xF51A, + + /// + /// The Font Awesome "brush" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "brush", "art", "bristles", "color", "handle", "paint" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Design", "Editing" })] + Brush = 0xF55D, + + /// + /// The Font Awesome "btc" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "btc" })] + [FontAwesomeCategoriesAttribute(new[] { "Money", "Shopping" })] + Btc = 0xF15A, + + /// + /// The Font Awesome "bucket" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bucket", "pail", "sandcastle" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Childhood", "Construction", "Humanitarian" })] + Bucket = 0xE4CF, + + /// + /// The Font Awesome "buffer" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "buffer" })] + Buffer = 0xF837, + + /// + /// The Font Awesome "bug" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bug", "beetle", "error", "glitch", "insect", "repair", "report" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Nature", "Security" })] + Bug = 0xF188, + + /// + /// The Font Awesome "bugs" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bugs", "bedbug", "infestation", "lice", "plague", "ticks" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Disaster + Crisis", "Humanitarian", "Nature" })] + Bugs = 0xE4D0, + + /// + /// The Font Awesome "bug-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bug slash", "beetle", "fix", "glitch", "insect", "optimize", "repair", "report", "warning" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Security" })] + BugSlash = 0xE490, + + /// + /// The Font Awesome "building" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "apartment", "building", "business", "city", "company", "office", "office building", "urban", "work" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Business", "Humanitarian", "Maps" })] + Building = 0xF1AD, + + /// + /// The Font Awesome "building-circle-arrow-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building circle arrow right", "building", "city", "distribution center", "office" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + BuildingCircleArrowRight = 0xE4D1, + + /// + /// The Font Awesome "building-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building circle check", "building", "city", "not affected", "office", "ok", "okay" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + BuildingCircleCheck = 0xE4D2, + + /// + /// The Font Awesome "building-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building circle exclamation", "affected", "building", "city", "office" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + BuildingCircleExclamation = 0xE4D3, + + /// + /// The Font Awesome "building-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building circle xmark", "building", "city", "destroy", "office" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + BuildingCircleXmark = 0xE4D4, + + /// + /// The Font Awesome "building-flag" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building flag", " city", "building", "diplomat", "embassy", "flag", "headquarters", "united nations" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Political" })] + BuildingFlag = 0xE4D5, + + /// + /// The Font Awesome "building-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building lock", "building", "city", "closed", "lock", "lockdown", "quarantine", "secure" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Security" })] + BuildingLock = 0xE4D6, + + /// + /// The Font Awesome "building-ngo" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building ngo", " city", "building", "non governmental organization", "office" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + BuildingNgo = 0xE4D7, + + /// + /// The Font Awesome "building-shield" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building shield", "building", "city", "police", "protect", "safety" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Security" })] + BuildingShield = 0xE4D8, + + /// + /// The Font Awesome "building-un" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building un", "building", "city", "office", "united nations" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + BuildingUn = 0xE4D9, + + /// + /// The Font Awesome "building-user" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building user", "apartment", "building", "city" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + BuildingUser = 0xE4DA, + + /// + /// The Font Awesome "building-wheat" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building wheat", "agriculture", "building", "city", "usda" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + BuildingWheat = 0xE4DB, + + /// + /// The Font Awesome "bullhorn" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bullhorn", "bullhorn", "announcement", "broadcast", "loud", "louder", "loudspeaker", "megaphone", "public address", "share" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Marketing", "Political", "Shopping" })] + Bullhorn = 0xF0A1, + + /// + /// The Font Awesome "bullseye" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bullseye", "archery", "goal", "objective", "target" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Marketing", "Toggle" })] + Bullseye = 0xF140, + + /// + /// The Font Awesome "fire-flame-simple" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "fire flame simple", "caliente", "energy", "fire", "flame", "gas", "heat", "hot" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Humanitarian", "Medical + Health", "Science", "Sports + Fitness" })] + Burn = 0xF46A, + + /// + /// The Font Awesome "buromobelexperte" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "buromobelexperte" })] + Buromobelexperte = 0xF37F, + + /// + /// The Font Awesome "burst" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "burst", "boom", "crash", "explosion" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Security", "Shapes" })] + Burst = 0xE4DC, + + /// + /// The Font Awesome "bus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bus", "oncoming", "oncoming bus", "public transportation", "transportation", "travel", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Humanitarian", "Logistics", "Transportation", "Travel + Hotel" })] + Bus = 0xF207, + + /// + /// The Font Awesome "bus-simple" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bus simple", "mta", "public transportation", "transportation", "travel", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Logistics", "Transportation", "Travel + Hotel" })] + BusAlt = 0xF55E, + + /// + /// The Font Awesome "business-time" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "business time", "alarm", "briefcase", "business socks", "clock", "flight of the conchords", "reminder", "wednesday" })] + [FontAwesomeCategoriesAttribute(new[] { "Business" })] + BusinessTime = 0xF64A, + + /// + /// The Font Awesome "buy-n-large" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "buy n large" })] + BuyNLarge = 0xF8A6, + + /// + /// The Font Awesome "buysellads" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "buysellads" })] + Buysellads = 0xF20D, + + /// + /// The Font Awesome "calculator" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "calculator", "pocket calculator", "abacus", "addition", "arithmetic", "counting", "math", "multiplication", "subtraction" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Mathematics" })] + Calculator = 0xF1EC, + + /// + /// The Font Awesome "calendar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "calendar", "calendar-o", "date", "day", "event", "month", "schedule", "tear-off calendar", "time", "when", "year" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Shapes", "Time" })] + Calendar = 0xF133, + + /// + /// The Font Awesome "calendar-days" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "calendar days", "calendar", "date", "day", "event", "month", "schedule", "time", "when", "year" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Time" })] + CalendarAlt = 0xF073, + + /// + /// The Font Awesome "calendar-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "calendar check", "accept", "agree", "appointment", "confirm", "correct", "date", "day", "done", "event", "month", "ok", "schedule", "select", "success", "tick", "time", "todo", "when", "year" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + CalendarCheck = 0xF274, + + /// + /// The Font Awesome "calendar-day" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "calendar day", "date", "day", "detail", "event", "focus", "month", "schedule", "single day", "time", "today", "when", "year" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + CalendarDay = 0xF783, + + /// + /// The Font Awesome "calendar-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "calendar minus", "calendar", "date", "day", "delete", "event", "month", "negative", "remove", "schedule", "time", "when", "year" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + CalendarMinus = 0xF272, + + /// + /// The Font Awesome "calendar-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "calendar plus", "add", "calendar", "create", "date", "day", "event", "month", "new", "positive", "schedule", "time", "when", "year" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + CalendarPlus = 0xF271, + + /// + /// The Font Awesome "calendar-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "calendar xmark", "archive", "calendar", "date", "day", "delete", "event", "month", "remove", "schedule", "time", "when", "x", "year" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + CalendarTimes = 0xF273, + + /// + /// The Font Awesome "calendar-week" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "calendar week", "date", "day", "detail", "event", "focus", "month", "schedule", "single week", "time", "today", "when", "year" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + CalendarWeek = 0xF784, + + /// + /// The Font Awesome "camera" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "camera", "image", "lens", "photo", "picture", "record", "shutter", "video" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware", "Photos + Images", "Shopping", "Social" })] + Camera = 0xF030, + + /// + /// The Font Awesome "camera-retro" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "camera retro", "camera", "image", "lens", "photo", "picture", "record", "shutter", "video" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware", "Photos + Images", "Shopping" })] + CameraRetro = 0xF083, + + /// + /// The Font Awesome "camera-rotate" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "camera rotate", "flip", "front-facing", "photo", "selfie" })] + [FontAwesomeCategoriesAttribute(new[] { "Photos + Images" })] + CameraRotate = 0xE0D8, + + /// + /// The Font Awesome "campground" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "campground", "camping", "fall", "outdoors", "teepee", "tent", "tipi" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Camping" })] + Campground = 0xF6BB, + + /// + /// The Font Awesome "canadian-maple-leaf" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "canadian maple leaf", "canada", "flag", "flora", "nature", "plant" })] + CanadianMapleLeaf = 0xF785, + + /// + /// The Font Awesome "candy-cane" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "candy cane", "candy", "christmas", "holiday", "mint", "peppermint", "striped", "xmas" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Holidays" })] + CandyCane = 0xF786, + + /// + /// The Font Awesome "cannabis" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cannabis", "bud", "chronic", "drugs", "endica", "endo", "ganja", "marijuana", "mary jane", "pot", "reefer", "sativa", "spliff", "weed", "whacky-tabacky" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Nature" })] + Cannabis = 0xF55F, + + /// + /// The Font Awesome "capsules" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "capsules", "drugs", "medicine", "pills", "prescription" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Science" })] + Capsules = 0xF46B, + + /// + /// The Font Awesome "car" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "auto", "automobile", "car", "oncoming", "oncoming automobile", "sedan", "transportation", "travel", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Humanitarian", "Logistics", "Maps", "Transportation", "Travel + Hotel" })] + Car = 0xF1B9, + + /// + /// The Font Awesome "car-rear" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "car rear", "auto", "automobile", "sedan", "transportation", "travel", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Transportation" })] + CarAlt = 0xF5DE, + + /// + /// The Font Awesome "caravan" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "caravan", "camper", "motor home", "rv", "trailer", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Camping", "Moving", "Travel + Hotel" })] + Caravan = 0xF8FF, + + /// + /// The Font Awesome "car-battery" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "car battery", "auto", "electric", "mechanic", "power" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Devices + Hardware", "Energy" })] + CarBattery = 0xF5DF, + + /// + /// The Font Awesome "car-burst" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "car burst", "accident", "auto", "automobile", "insurance", "sedan", "transportation", "vehicle", "wreck" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Transportation" })] + CarCrash = 0xF5E1, + + /// + /// The Font Awesome "caret-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "caret down", "arrow", "dropdown", "expand", "menu", "more", "triangle" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + CaretDown = 0xF0D7, + + /// + /// The Font Awesome "caret-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "caret left", "arrow", "back", "previous", "triangle" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + CaretLeft = 0xF0D9, + + /// + /// The Font Awesome "caret-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "caret right", "arrow", "forward", "next", "triangle" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + CaretRight = 0xF0DA, + + /// + /// The Font Awesome "square-caret-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square caret down", "arrow", "caret-square-o-down", "dropdown", "expand", "menu", "more", "triangle" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + CaretSquareDown = 0xF150, + + /// + /// The Font Awesome "square-caret-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square caret left", "arrow", "back", "caret-square-o-left", "previous", "triangle" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + CaretSquareLeft = 0xF191, + + /// + /// The Font Awesome "square-caret-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square caret right", "arrow", "caret-square-o-right", "forward", "next", "triangle" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + CaretSquareRight = 0xF152, + + /// + /// The Font Awesome "square-caret-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square caret up", "arrow", "caret-square-o-up", "collapse", "triangle", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + CaretSquareUp = 0xF151, + + /// + /// The Font Awesome "caret-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "caret up", "arrow", "collapse", "triangle" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + CaretUp = 0xF0D8, + + /// + /// The Font Awesome "car-on" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "car on", "alarm", "car", "carjack", "warning" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Humanitarian", "Security" })] + CarOn = 0xE4DD, + + /// + /// The Font Awesome "carrot" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bugs bunny", "carrot", "food", "orange", "vegan", "vegetable" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Fruits + Vegetables", "Holidays" })] + Carrot = 0xF787, + + /// + /// The Font Awesome "car-side" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "car side", "auto", "automobile", "car", "sedan", "transportation", "travel", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Transportation" })] + CarSide = 0xF5E4, + + /// + /// The Font Awesome "cart-arrow-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cart arrow down", "download", "save", "shopping" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CartArrowDown = 0xF218, + + /// + /// The Font Awesome "cart-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cart plus", "add", "create", "new", "positive", "shopping" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CartPlus = 0xF217, + + /// + /// The Font Awesome "car-tunnel" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "car tunnel", "road", "tunnel" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Humanitarian", "Logistics", "Transportation" })] + CarTunnel = 0xE4DE, + + /// + /// The Font Awesome "cash-register" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cash register", "buy", "cha-ching", "change", "checkout", "commerce", "leaerboard", "machine", "pay", "payment", "purchase", "store" })] + [FontAwesomeCategoriesAttribute(new[] { "Money", "Shopping" })] + CashRegister = 0xF788, + + /// + /// The Font Awesome "cat" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cat", "feline", "halloween", "holiday", "kitten", "kitty", "meow", "pet" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Halloween" })] + Cat = 0xF6BE, + + /// + /// The Font Awesome "cc-amazon-pay" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cc amazon pay" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CcAmazonPay = 0xF42D, + + /// + /// The Font Awesome "cc-amex" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cc amex", "amex" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CcAmex = 0xF1F3, + + /// + /// The Font Awesome "cc-apple-pay" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cc apple pay" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CcApplePay = 0xF416, + + /// + /// The Font Awesome "cc-diners-club" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cc diners club" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CcDinersClub = 0xF24C, + + /// + /// The Font Awesome "cc-discover" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cc discover" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CcDiscover = 0xF1F2, + + /// + /// The Font Awesome "cc-jcb" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cc jcb" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CcJcb = 0xF24B, + + /// + /// The Font Awesome "cc-mastercard" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cc mastercard" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CcMastercard = 0xF1F1, + + /// + /// The Font Awesome "cc-paypal" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cc paypal" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CcPaypal = 0xF1F4, + + /// + /// The Font Awesome "cc-stripe" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cc stripe" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CcStripe = 0xF1F5, + + /// + /// The Font Awesome "cc-visa" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cc visa" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + CcVisa = 0xF1F0, + + /// + /// The Font Awesome "cedi-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cedi sign", "cedi sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + CediSign = 0xE0DF, + + /// + /// The Font Awesome "centercode" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "centercode" })] + Centercode = 0xF380, + + /// + /// The Font Awesome "centos" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "centos", "linux", "operating system", "os" })] + Centos = 0xF789, + + /// + /// The Font Awesome "cent-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cent sign", "cent sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + CentSign = 0xE3F5, + + /// + /// The Font Awesome "certificate" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "certificate", "badge", "star", "verified" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Shapes", "Shopping", "Spinners" })] + Certificate = 0xF0A3, + + /// + /// The Font Awesome "chair" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chair", "furniture", "seat", "sit" })] + [FontAwesomeCategoriesAttribute(new[] { "Household" })] + Chair = 0xF6C0, + + /// + /// The Font Awesome "chalkboard" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chalkboard", "blackboard", "learning", "school", "teaching", "whiteboard", "writing" })] + [FontAwesomeCategoriesAttribute(new[] { "Education", "Photos + Images" })] + Chalkboard = 0xF51B, + + /// + /// The Font Awesome "chalkboard-user" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chalkboard user", "blackboard", "instructor", "learning", "professor", "school", "whiteboard", "writing" })] + [FontAwesomeCategoriesAttribute(new[] { "Education", "Users + People" })] + ChalkboardTeacher = 0xF51C, + + /// + /// The Font Awesome "charging-station" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "charging station", "electric", "ev", "tesla", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Energy" })] + ChargingStation = 0xF5E7, + + /// + /// The Font Awesome "chart-area" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chart area", "analytics", "area", "chart", "graph" })] + [FontAwesomeCategoriesAttribute(new[] { "Charts + Diagrams" })] + ChartArea = 0xF1FE, + + /// + /// The Font Awesome "chart-bar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chart bar", "analytics", "bar", "chart", "graph" })] + [FontAwesomeCategoriesAttribute(new[] { "Charts + Diagrams" })] + ChartBar = 0xF080, + + /// + /// The Font Awesome "chart-column" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chart column", "bar", "bar chart", "chart", "graph", "track", "trend" })] + [FontAwesomeCategoriesAttribute(new[] { "Charts + Diagrams" })] + ChartColumn = 0xE0E3, + + /// + /// The Font Awesome "chart-gantt" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chart gantt", "chart", "graph", "track", "trend" })] + [FontAwesomeCategoriesAttribute(new[] { "Charts + Diagrams" })] + ChartGantt = 0xE0E4, + + /// + /// The Font Awesome "chart-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chart line", "activity", "analytics", "chart", "dashboard", "gain", "graph", "increase", "line" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Charts + Diagrams", "Money" })] + ChartLine = 0xF201, + + /// + /// The Font Awesome "chart-pie" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chart pie", "analytics", "chart", "diagram", "graph", "pie" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Charts + Diagrams", "Money" })] + ChartPie = 0xF200, + + /// + /// The Font Awesome "chart-simple" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chart simple", "analytics", "bar", "chart", "column", "graph", "row", "trend" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Charts + Diagrams", "Editing", "Logistics", "Marketing" })] + ChartSimple = 0xE473, + + /// + /// The Font Awesome "check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "check mark", "accept", "agree", "check", "check mark", "checkmark", "confirm", "correct", "done", "mark", "notice", "notification", "notify", "ok", "select", "success", "tick", "todo", "yes", "✓" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing", "Punctuation + Symbols", "Text Formatting" })] + Check = 0xF00C, + + /// + /// The Font Awesome "circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle check", "accept", "affected", "agree", "clear", "confirm", "correct", "done", "ok", "select", "success", "tick", "todo", "yes" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing", "Text Formatting", "Toggle" })] + CheckCircle = 0xF058, + + /// + /// The Font Awesome "check-double" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "check double", "accept", "agree", "checkmark", "confirm", "correct", "done", "notice", "notification", "notify", "ok", "select", "success", "tick", "todo" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing", "Political", "Punctuation + Symbols", "Text Formatting" })] + CheckDouble = 0xF560, + + /// + /// The Font Awesome "square-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square check", "accept", "agree", "box", "button", "check", "check box with check", "check mark button", "checkmark", "confirm", "correct", "done", "mark", "ok", "select", "success", "tick", "todo", "yes", "✓" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing", "Text Formatting" })] + CheckSquare = 0xF14A, + + /// + /// The Font Awesome "cheese" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cheese", "cheddar", "curd", "gouda", "melt", "parmesan", "sandwich", "swiss", "wedge" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage" })] + Cheese = 0xF7EF, + + /// + /// The Font Awesome "chess" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chess", "board", "castle", "checkmate", "game", "king", "rook", "strategy", "tournament" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + Chess = 0xF439, + + /// + /// The Font Awesome "chess-bishop" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chess bishop", "black chess bishop", "board", "checkmate", "game", "strategy" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + ChessBishop = 0xF43A, + + /// + /// The Font Awesome "chess-board" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chess board", "board", "checkmate", "game", "strategy" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + ChessBoard = 0xF43C, + + /// + /// The Font Awesome "chess-king" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chess king", "black chess king", "board", "checkmate", "game", "strategy" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + ChessKing = 0xF43F, + + /// + /// The Font Awesome "chess-knight" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chess knight", "black chess knight", "board", "checkmate", "game", "horse", "strategy" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + ChessKnight = 0xF441, + + /// + /// The Font Awesome "chess-pawn" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chess pawn", "board", "checkmate", "chess", "chess pawn", "dupe", "expendable", "game", "strategy" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + ChessPawn = 0xF443, + + /// + /// The Font Awesome "chess-queen" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chess queen", "black chess queen", "board", "checkmate", "game", "strategy" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + ChessQueen = 0xF445, + + /// + /// The Font Awesome "chess-rook" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chess rook", "black chess rook", "board", "castle", "checkmate", "game", "strategy" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + ChessRook = 0xF447, + + /// + /// The Font Awesome "circle-chevron-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle chevron down", "arrow", "download", "dropdown", "menu", "more" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ChevronCircleDown = 0xF13A, + + /// + /// The Font Awesome "circle-chevron-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle chevron left", "arrow", "back", "previous" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ChevronCircleLeft = 0xF137, + + /// + /// The Font Awesome "circle-chevron-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle chevron right", "arrow", "forward", "next" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ChevronCircleRight = 0xF138, + + /// + /// The Font Awesome "circle-chevron-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle chevron up", "arrow", "collapse", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ChevronCircleUp = 0xF139, + + /// + /// The Font Awesome "chevron-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chevron down", "arrow", "download", "expand" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ChevronDown = 0xF078, + + /// + /// The Font Awesome "chevron-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chevron left", "left-pointing angle bracket", "arrow", "back", "bracket", "previous" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ChevronLeft = 0xF053, + + /// + /// The Font Awesome "chevron-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chevron right", "right-pointing angle bracket", "arrow", "bracket", "forward", "next" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ChevronRight = 0xF054, + + /// + /// The Font Awesome "chevron-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chevron up", "arrow", "collapse", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ChevronUp = 0xF077, + + /// + /// The Font Awesome "child" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "child", "boy", "girl", "kid", "toddler", "young", "youth" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Users + People" })] + Child = 0xF1AE, + + /// + /// The Font Awesome "child-combatant" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "child combatant", "combatant" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian" })] + ChildCombatant = 0xE4E0, + + /// + /// The Font Awesome "child-dress" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "child dress", "boy", "girl", "kid", "toddler", "young", "youth" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Users + People" })] + ChildDress = 0xE59C, + + /// + /// The Font Awesome "child-reaching" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "child reaching", "boy", "girl", "kid", "toddler", "young", "youth" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Users + People" })] + ChildReaching = 0xE59D, + + /// + /// The Font Awesome "children" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "children", "boy", "child", "girl", "kid", "kids", "young", "youth" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Humanitarian", "Users + People" })] + Children = 0xE4E1, + + /// + /// The Font Awesome "chrome" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "chrome", "browser" })] + Chrome = 0xF268, + + /// + /// The Font Awesome "chromecast" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "chromecast" })] + Chromecast = 0xF838, + + /// + /// The Font Awesome "church" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "christian", "building", "cathedral", "chapel", "church", "community", "cross", "religion" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Religion" })] + Church = 0xF51D, + + /// + /// The Font Awesome "circle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "black circle", "black large circle", "black circle", "blue", "blue circle", "brown", "brown circle", "chart", "circle", "circle-thin", "diameter", "dot", "ellipse", "fill", "geometric", "green", "green circle", "notification", "orange", "orange circle", "progress", "purple", "purple circle", "red", "red circle", "round", "white circle", "yellow", "yellow circle" })] + [FontAwesomeCategoriesAttribute(new[] { "Film + Video", "Shapes", "Toggle" })] + Circle = 0xF111, + + /// + /// The Font Awesome "circle-nodes" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle nodes", "cluster", "connect", "network" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Connectivity", "Design", "Humanitarian" })] + CircleNodes = 0xE4E2, + + /// + /// The Font Awesome "circle-notch" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle notch", "circle-o-notch", "diameter", "dot", "ellipse", "round", "spinner" })] + [FontAwesomeCategoriesAttribute(new[] { "Spinners" })] + CircleNotch = 0xF1CE, + + /// + /// The Font Awesome "city" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "buildings", "busy", "city", "cityscape", "skyscrapers", "urban", "windows" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Business" })] + City = 0xF64F, + + /// + /// The Font Awesome "clapperboard" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "clapperboard", "camera", "clapper", "clapper board", "director", "film", "movie", "record" })] + [FontAwesomeCategoriesAttribute(new[] { "Film + Video" })] + Clapperboard = 0xE131, + + /// + /// The Font Awesome "house-chimney-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house chimney medical", "covid-19", "doctor", "general practitioner", "hospital", "infirmary", "medicine", "office", "outpatient" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Medical + Health" })] + ClinicMedical = 0xF7F2, + + /// + /// The Font Awesome "clipboard" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "clipboar", "clipboard", "copy", "notes", "paste", "record" })] + [FontAwesomeCategoriesAttribute(new[] { "Business" })] + Clipboard = 0xF328, + + /// + /// The Font Awesome "clipboard-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "clipboard check", "accept", "agree", "confirm", "done", "ok", "select", "success", "tick", "todo", "yes" })] + [FontAwesomeCategoriesAttribute(new[] { "Logistics", "Science" })] + ClipboardCheck = 0xF46C, + + /// + /// The Font Awesome "clipboard-list" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "clipboard list", "checklist", "completed", "done", "finished", "intinerary", "ol", "schedule", "tick", "todo", "ul" })] + [FontAwesomeCategoriesAttribute(new[] { "Logistics" })] + ClipboardList = 0xF46D, + + /// + /// The Font Awesome "clipboard-question" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "clipboard question", "assistance", "interview", "query", "question" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Humanitarian", "Logistics" })] + ClipboardQuestion = 0xE4E3, + + /// + /// The Font Awesome "clipboard-user" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "clipboard user", "attendance", "record", "roster", "staff" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health", "Users + People" })] + ClipboardUser = 0xF7F3, + + /// + /// The Font Awesome "clock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "00", "4", "4:00", "clock", "date", "four", "four o’clock", "hour", "late", "minute", "o'clock", "o’clock", "schedule", "ticking", "time", "timer", "timestamp", "watch" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + Clock = 0xF017, + + /// + /// The Font Awesome "clone" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "clone", "arrange", "copy", "duplicate", "paste" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Files", "Photos + Images" })] + Clone = 0xF24D, + + /// + /// The Font Awesome "closed-captioning" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "closed captioning", "cc", "deaf", "hearing", "subtitle", "subtitling", "text", "video" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Film + Video" })] + ClosedCaptioning = 0xF20A, + + /// + /// The Font Awesome "cloud" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "atmosphere", "cloud", "fog", "overcast", "save", "upload", "weather" })] + [FontAwesomeCategoriesAttribute(new[] { "Connectivity", "Shapes", "Weather" })] + Cloud = 0xF0C2, + + /// + /// The Font Awesome "cloud-bolt" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cloud bolt", "bolt", "cloud", "cloud with lightning", "lightning", "precipitation", "rain", "storm", "weather" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Weather" })] + CloudBolt = 0xF76C, + + /// + /// The Font Awesome "cloud-arrow-down" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF0ED. + /// + [FontAwesomeSearchTerms(new[] { "cloud arrow down", "download", "export", "save" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Connectivity" })] + CloudDownloadAlt = 0xF381, + + /// + /// The Font Awesome "cloud-meatball" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cloud meatball", "fldsmdfr", "food", "spaghetti", "storm" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Weather" })] + CloudMeatball = 0xF73B, + + /// + /// The Font Awesome "cloud-moon" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cloud moon", "crescent", "evening", "lunar", "night", "partly cloudy", "sky" })] + [FontAwesomeCategoriesAttribute(new[] { "Halloween", "Weather" })] + CloudMoon = 0xF6C3, + + /// + /// The Font Awesome "cloud-moon-rain" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cloud moon rain", "crescent", "evening", "lunar", "night", "partly cloudy", "precipitation", "rain", "sky", "storm" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + CloudMoonRain = 0xF73C, + + /// + /// The Font Awesome "cloud-rain" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cloud rain", "rain", "cloud", "cloud with rain", "precipitation", "rain", "sky", "storm" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + CloudRain = 0xF73D, + + /// + /// The Font Awesome "cloudscale" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cloudscale" })] + Cloudscale = 0xF383, + + /// + /// The Font Awesome "cloud-showers-heavy" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cloud showers heavy", "precipitation", "rain", "sky", "storm" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Weather" })] + CloudShowersHeavy = 0xF740, + + /// + /// The Font Awesome "cloud-showers-water" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cloud showers water", "cloud", "deluge", "flood", "rain", "storm", "surge" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Weather" })] + CloudShowersWater = 0xE4E4, + + /// + /// The Font Awesome "cloudsmith" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cloudsmith" })] + Cloudsmith = 0xF384, + + /// + /// The Font Awesome "cloud-sun" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cloud sun", "clear", "cloud", "day", "daytime", "fall", "outdoors", "overcast", "partly cloudy", "sun", "sun behind cloud" })] + [FontAwesomeCategoriesAttribute(new[] { "Nature", "Weather" })] + CloudSun = 0xF6C4, + + /// + /// The Font Awesome "cloud-sun-rain" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cloud sun rain", "cloud", "day", "overcast", "precipitation", "rain", "storm", "summer", "sun", "sun behind rain cloud", "sunshower" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + CloudSunRain = 0xF743, + + /// + /// The Font Awesome "cloud-arrow-up" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF0EE. + /// + [FontAwesomeSearchTerms(new[] { "cloud arrow up", "import", "save", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Connectivity" })] + CloudUploadAlt = 0xF382, + + /// + /// The Font Awesome "cloudversify" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cloudversify" })] + Cloudversify = 0xF385, + + /// + /// The Font Awesome "clover" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "4", "charm", "clover", "four", "four leaf clover", "four-leaf clover", "leaf", "leprechaun", "luck", "lucky" })] + [FontAwesomeCategoriesAttribute(new[] { "Nature", "Shapes" })] + Clover = 0xE139, + + /// + /// The Font Awesome "martini-glass-citrus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "martini glass citrus", "alcohol", "beverage", "drink", "gin", "glass", "margarita", "martini", "vodka" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Travel + Hotel" })] + Cocktail = 0xF561, + + /// + /// The Font Awesome "code" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "brackets", "code", "development", "html" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + Code = 0xF121, + + /// + /// The Font Awesome "code-branch" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "code branch", "branch", "git", "github", "rebase", "svn", "vcs", "version" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + CodeBranch = 0xF126, + + /// + /// The Font Awesome "code-commit" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "code commit", "commit", "git", "github", "hash", "rebase", "svn", "vcs", "version" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + CodeCommit = 0xF386, + + /// + /// The Font Awesome "code-compare" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "code compare", "compare", "git", "github", "svn", "version" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + CodeCompare = 0xE13A, + + /// + /// The Font Awesome "code-fork" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "code fork", "fork", "git", "github", "svn", "version" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + CodeFork = 0xE13B, + + /// + /// The Font Awesome "code-merge" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "code merge", "git", "github", "merge", "pr", "rebase", "svn", "vcs", "version" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + CodeMerge = 0xF387, + + /// + /// The Font Awesome "codepen" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "codepen" })] + Codepen = 0xF1CB, + + /// + /// The Font Awesome "code-pull-request" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "code pull request", "git", "github", "pr", "svn", "version" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + CodePullRequest = 0xE13C, + + /// + /// The Font Awesome "codiepie" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "codiepie" })] + Codiepie = 0xF284, + + /// + /// The Font Awesome "mug-saucer" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mug saucer", "beverage", "breakfast", "cafe", "drink", "fall", "morning", "mug", "seasonal", "tea" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Coding", "Food + Beverage", "Household", "Maps", "Travel + Hotel" })] + Coffee = 0xF0F4, + + /// + /// The Font Awesome "gear" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cog", "cogwheel", "gear", "mechanical", "settings", "sprocket", "tool", "wheel" })] + [FontAwesomeCategoriesAttribute(new[] { "Spinners" })] + Cog = 0xF013, + + /// + /// The Font Awesome "gears" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gears", "mechanical", "settings", "sprocket", "wheel" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Logistics" })] + Cogs = 0xF085, + + /// + /// The Font Awesome "coins" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "coins", "currency", "dime", "financial", "gold", "money", "penny" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + Coins = 0xF51E, + + /// + /// The Font Awesome "colon-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "colon sign", "colon sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + ColonSign = 0xE140, + + /// + /// The Font Awesome "table-columns" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "table columns", "browser", "dashboard", "organize", "panes", "split" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Text Formatting" })] + Columns = 0xF0DB, + + /// + /// The Font Awesome "comment" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "comment", "right speech bubble", "bubble", "chat", "commenting", "conversation", "feedback", "message", "note", "notification", "sms", "speech", "texting" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Shapes", "Social" })] + Comment = 0xF075, + + /// + /// The Font Awesome "message" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bubble", "chat", "commenting", "conversation", "feedback", "message", "note", "notification", "sms", "speech", "texting" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Social" })] + CommentAlt = 0xF27A, + + /// + /// The Font Awesome "comment-dollar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "comment dollar", "bubble", "chat", "commenting", "conversation", "feedback", "message", "money", "note", "notification", "pay", "sms", "speech", "spend", "texting", "transfer" })] + [FontAwesomeCategoriesAttribute(new[] { "Marketing", "Money" })] + CommentDollar = 0xF651, + + /// + /// The Font Awesome "comment-dots" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "comment dots", "balloon", "bubble", "chat", "comic", "commenting", "conversation", "dialog", "feedback", "message", "more", "note", "notification", "reply", "sms", "speech", "speech balloon", "texting" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication" })] + CommentDots = 0xF4AD, + + /// + /// The Font Awesome "comment-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "comment medical", "advice", "bubble", "chat", "commenting", "conversation", "diagnose", "feedback", "message", "note", "notification", "prescription", "sms", "speech", "texting" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Medical + Health" })] + CommentMedical = 0xF7F5, + + /// + /// The Font Awesome "comments" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "comments", "two speech bubbles", "bubble", "chat", "commenting", "conversation", "feedback", "message", "note", "notification", "sms", "speech", "texting" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication" })] + Comments = 0xF086, + + /// + /// The Font Awesome "comments-dollar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "comments dollar", "bubble", "chat", "commenting", "conversation", "feedback", "message", "money", "note", "notification", "pay", "sms", "speech", "spend", "texting", "transfer" })] + [FontAwesomeCategoriesAttribute(new[] { "Marketing", "Money" })] + CommentsDollar = 0xF653, + + /// + /// The Font Awesome "comment-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "comment slash", "bubble", "cancel", "chat", "commenting", "conversation", "feedback", "message", "mute", "note", "notification", "quiet", "sms", "speech", "texting" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication" })] + CommentSlash = 0xF4B3, + + /// + /// The Font Awesome "compact-disc" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "compact disc", "optical disc icon", "album", "blu-ray", "bluray", "cd", "computer", "disc", "disk", "dvd", "media", "movie", "music", "optical", "optical disk", "record", "video", "vinyl" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware", "Film + Video", "Music + Audio", "Spinners" })] + CompactDisc = 0xF51F, + + /// + /// The Font Awesome "compass" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "compass", "directions", "directory", "location", "magnetic", "menu", "navigation", "orienteering", "safari", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Camping", "Spinners" })] + Compass = 0xF14E, + + /// + /// The Font Awesome "compress" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "compress", "collapse", "fullscreen", "minimize", "move", "resize", "shrink", "smaller" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + Compress = 0xF066, + + /// + /// The Font Awesome "down-left-and-up-right-to-center" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "down left and up right to center", "collapse", "fullscreen", "minimize", "move", "resize", "shrink", "smaller" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Media Playback" })] + CompressAlt = 0xF422, + + /// + /// The Font Awesome "minimize" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "collapse", "fullscreen", "minimize", "move", "resize", "shrink", "smaller" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback", "Photos + Images" })] + CompressArrowsAlt = 0xF78C, + + /// + /// The Font Awesome "computer" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "computer", "desktop", "display", "monitor", "tower" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware", "Household", "Humanitarian" })] + Computer = 0xE4E5, + + /// + /// The Font Awesome "bell-concierge" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bell concierge", "attention", "bell", "bellhop", "bellhop bell", "hotel", "receptionist", "service", "support" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + ConciergeBell = 0xF562, + + /// + /// The Font Awesome "confluence" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "confluence", "atlassian" })] + Confluence = 0xF78D, + + /// + /// The Font Awesome "connectdevelop" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "connectdevelop" })] + Connectdevelop = 0xF20E, + + /// + /// The Font Awesome "contao" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "contao" })] + Contao = 0xF26D, + + /// + /// The Font Awesome "cookie" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "baked good", "chips", "chocolate", "cookie", "dessert", "eat", "snack", "sweet", "treat" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Food + Beverage" })] + Cookie = 0xF563, + + /// + /// The Font Awesome "cookie-bite" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cookie bite", "baked good", "bitten", "chips", "chocolate", "eat", "snack", "sweet", "treat" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Holidays" })] + CookieBite = 0xF564, + + /// + /// The Font Awesome "copy" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "copy", "clone", "duplicate", "file", "files-o", "paper", "paste" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Files" })] + Copy = 0xF0C5, + + /// + /// The Font Awesome "copyright" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "brand", "c", "copyright", "mark", "register", "trademark" })] + [FontAwesomeCategoriesAttribute(new[] { "Business" })] + Copyright = 0xF1F9, + + /// + /// The Font Awesome "cotton-bureau" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cotton bureau", "clothing", "t-shirts", "tshirts" })] + CottonBureau = 0xF89E, + + /// + /// The Font Awesome "couch" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "couch", "chair", "cushion", "furniture", "relax", "sofa" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Moving" })] + Couch = 0xF4B8, + + /// + /// The Font Awesome "cow" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "agriculture", "animal", "beef", "bovine", "co", "cow", "farm", "fauna", "livestock", "mammal", "milk", "moo" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Humanitarian" })] + Cow = 0xF6C8, + + /// + /// The Font Awesome "cpanel" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cpanel" })] + Cpanel = 0xF388, + + /// + /// The Font Awesome "creative-commons" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons" })] + CreativeCommons = 0xF25E, + + /// + /// The Font Awesome "creative-commons-by" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons by" })] + CreativeCommonsBy = 0xF4E7, + + /// + /// The Font Awesome "creative-commons-nc" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons nc" })] + CreativeCommonsNc = 0xF4E8, + + /// + /// The Font Awesome "creative-commons-nc-eu" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons nc eu" })] + CreativeCommonsNcEu = 0xF4E9, + + /// + /// The Font Awesome "creative-commons-nc-jp" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons nc jp" })] + CreativeCommonsNcJp = 0xF4EA, + + /// + /// The Font Awesome "creative-commons-nd" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons nd" })] + CreativeCommonsNd = 0xF4EB, + + /// + /// The Font Awesome "creative-commons-pd" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons pd" })] + CreativeCommonsPd = 0xF4EC, + + /// + /// The Font Awesome "creative-commons-pd-alt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons pd alt" })] + CreativeCommonsPdAlt = 0xF4ED, + + /// + /// The Font Awesome "creative-commons-remix" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons remix" })] + CreativeCommonsRemix = 0xF4EE, + + /// + /// The Font Awesome "creative-commons-sa" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons sa" })] + CreativeCommonsSa = 0xF4EF, + + /// + /// The Font Awesome "creative-commons-sampling" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons sampling" })] + CreativeCommonsSampling = 0xF4F0, + + /// + /// The Font Awesome "creative-commons-sampling-plus" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons sampling plus" })] + CreativeCommonsSamplingPlus = 0xF4F1, + + /// + /// The Font Awesome "creative-commons-share" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons share" })] + CreativeCommonsShare = 0xF4F2, + + /// + /// The Font Awesome "creative-commons-zero" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "creative commons zero" })] + CreativeCommonsZero = 0xF4F3, + + /// + /// The Font Awesome "credit-card" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "credit card", "buy", "card", "checkout", "credit", "credit card", "credit-card-alt", "debit", "money", "payment", "purchase" })] + [FontAwesomeCategoriesAttribute(new[] { "Money", "Shopping" })] + CreditCard = 0xF09D, + + /// + /// The Font Awesome "critical-role" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "critical role", "dungeons & dragons", "d&d", "dnd", "fantasy", "game", "gaming", "tabletop" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + CriticalRole = 0xF6C9, + + /// + /// The Font Awesome "crop" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "crop", "design", "frame", "mask", "resize", "shrink" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Editing" })] + Crop = 0xF125, + + /// + /// The Font Awesome "crop-simple" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "crop simple", "design", "frame", "mask", "resize", "shrink" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Editing" })] + CropAlt = 0xF565, + + /// + /// The Font Awesome "cross" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "christian", "heavy latin cross", "catholicism", "christianity", "church", "cross", "jesus", "latin cross", "religion" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Cross = 0xF654, + + /// + /// The Font Awesome "crosshairs" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "crosshairs", "aim", "bullseye", "gpd", "picker", "position" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Maps", "Spinners" })] + Crosshairs = 0xF05B, + + /// + /// The Font Awesome "crow" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "crow", "bird", "bullfrog", "fauna", "halloween", "holiday", "toad" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Halloween" })] + Crow = 0xF520, + + /// + /// The Font Awesome "crown" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "award", "clothing", "crown", "favorite", "king", "queen", "royal", "tiara" })] + [FontAwesomeCategoriesAttribute(new[] { "Shapes" })] + Crown = 0xF521, + + /// + /// The Font Awesome "crutch" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "crutch", "cane", "injury", "mobility", "wheelchair" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Crutch = 0xF7F7, + + /// + /// The Font Awesome "cruzeiro-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cruzeiro sign", "cruzeiro sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + CruzeiroSign = 0xE152, + + /// + /// The Font Awesome "css3" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "css3", "code" })] + Css3 = 0xF13C, + + /// + /// The Font Awesome "css3-alt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "css3 alt" })] + Css3Alt = 0xF38B, + + /// + /// The Font Awesome "cube" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cube", "3d", "block", "dice", "package", "square", "tesseract" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Design", "Editing" })] + Cube = 0xF1B2, + + /// + /// The Font Awesome "cubes" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cubes", "3d", "block", "dice", "package", "pyramid", "square", "stack", "tesseract" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Design" })] + Cubes = 0xF1B3, + + /// + /// The Font Awesome "cubes-stacked" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cubes stacked", "blocks", "cubes", "sugar" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Food + Beverage", "Humanitarian", "Shapes" })] + CubesStacked = 0xE4E6, + + /// + /// The Font Awesome "scissors" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "black safety scissors", "white scissors", "clip", "cutting", "scissors", "snip", "tool" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Editing", "Files" })] + Cut = 0xF0C4, + + /// + /// The Font Awesome "cuttlefish" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "cuttlefish" })] + Cuttlefish = 0xF38C, + + /// + /// The Font Awesome "dailymotion" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "dailymotion" })] + Dailymotion = 0xF952, + + /// + /// The Font Awesome "d-and-d" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "d and d" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + DAndD = 0xF38D, + + /// + /// The Font Awesome "d-and-d-beyond" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "d and d beyond", "dungeons & dragons", "d&d", "dnd", "fantasy", "gaming", "tabletop" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + DAndDBeyond = 0xF6CA, + + /// + /// The Font Awesome "dashcube" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "dashcube" })] + Dashcube = 0xF210, + + /// + /// The Font Awesome "database" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "database", "computer", "development", "directory", "memory", "storage" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + Database = 0xF1C0, + + /// + /// The Font Awesome "ear-deaf" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ear deaf", "ear", "hearing", "sign language" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility" })] + Deaf = 0xF2A4, + + /// + /// The Font Awesome "delicious" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "delicious" })] + Delicious = 0xF1A5, + + /// + /// The Font Awesome "democrat" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "democrat", "american", "democratic party", "donkey", "election", "left", "left-wing", "liberal", "politics", "usa" })] + [FontAwesomeCategoriesAttribute(new[] { "Political" })] + Democrat = 0xF747, + + /// + /// The Font Awesome "deploydog" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "deploydog" })] + Deploydog = 0xF38E, + + /// + /// The Font Awesome "deskpro" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "deskpro" })] + Deskpro = 0xF38F, + + /// + /// The Font Awesome "desktop" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF390. + /// + [FontAwesomeSearchTerms(new[] { "computer", "cpu", "demo", "desktop", "desktop computer", "device", "imac", "machine", "monitor", "pc", "screen" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + Desktop = 0xF108, + + /// + /// The Font Awesome "dev" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "dev" })] + Dev = 0xF6CC, + + /// + /// The Font Awesome "deviantart" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "deviantart" })] + Deviantart = 0xF1BD, + + /// + /// The Font Awesome "dharmachakra" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dharmachakra", "buddhist", "buddhism", "buddhist", "dharma", "religion", "wheel", "wheel of dharma" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion", "Spinners" })] + Dharmachakra = 0xF655, + + /// + /// The Font Awesome "dhl" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "dhl", "dalsey", "hillblom and lynn", "german", "package", "shipping" })] + Dhl = 0xF790, + + /// + /// The Font Awesome "person-dots-from-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person dots from line", "allergy", "diagnosis" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Users + People" })] + Diagnoses = 0xF470, + + /// + /// The Font Awesome "diagram-next" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "diagram next", "cells", "chart", "gantt", "row", "subtask", "successor", "table" })] + [FontAwesomeCategoriesAttribute(new[] { "Charts + Diagrams" })] + DiagramNext = 0xE476, + + /// + /// The Font Awesome "diagram-predecessor" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "diagram predecessor", "cells", "chart", "gantt", "predecessor", "previous", "row", "subtask", "table" })] + [FontAwesomeCategoriesAttribute(new[] { "Charts + Diagrams" })] + DiagramPredecessor = 0xE477, + + /// + /// The Font Awesome "diagram-successor" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "diagram successor", "cells", "chart", "gantt", "next", "row", "subtask", "successor", "table" })] + [FontAwesomeCategoriesAttribute(new[] { "Charts + Diagrams" })] + DiagramSuccessor = 0xE47A, + + /// + /// The Font Awesome "diamond" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "diamond", "card", "cards", "diamond suit", "game", "gem", "gemstone", "poker", "suit" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming", "Shapes" })] + Diamond = 0xF219, + + /// + /// The Font Awesome "diaspora" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "diaspora" })] + Diaspora = 0xF791, + + /// + /// The Font Awesome "dice" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "chance", "dice", "die", "gambling", "game", "game die", "roll" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming", "Travel + Hotel" })] + Dice = 0xF522, + + /// + /// The Font Awesome "dice-d20" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dice d20", "dungeons & dragons", "chance", "d&d", "dnd", "fantasy", "gambling", "game", "roll" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + DiceD20 = 0xF6CF, + + /// + /// The Font Awesome "dice-d6" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dice d6", "dungeons & dragons", "chance", "d&d", "dnd", "fantasy", "gambling", "game", "roll" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + DiceD6 = 0xF6D1, + + /// + /// The Font Awesome "dice-five" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dice five", "die face-5", "chance", "gambling", "game", "roll" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming", "Travel + Hotel" })] + DiceFive = 0xF523, + + /// + /// The Font Awesome "dice-four" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dice four", "die face-4", "chance", "gambling", "game", "roll" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + DiceFour = 0xF524, + + /// + /// The Font Awesome "dice-one" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dice one", "die face-1", "chance", "gambling", "game", "roll" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + DiceOne = 0xF525, + + /// + /// The Font Awesome "dice-six" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dice six", "die face-6", "chance", "gambling", "game", "roll" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + DiceSix = 0xF526, + + /// + /// The Font Awesome "dice-three" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dice three", "die face-3", "chance", "gambling", "game", "roll" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + DiceThree = 0xF527, + + /// + /// The Font Awesome "dice-two" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dice two", "die face-2", "chance", "gambling", "game", "roll" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + DiceTwo = 0xF528, + + /// + /// The Font Awesome "digg" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "digg" })] + Digg = 0xF1A6, + + /// + /// The Font Awesome "digital-ocean" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "digital ocean" })] + DigitalOcean = 0xF391, + + /// + /// The Font Awesome "tachograph-digital" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tachograph digital", "data", "distance", "speed", "tachometer" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + DigitalTachograph = 0xF566, + + /// + /// The Font Awesome "diamond-turn-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "diamond turn right", "map", "navigation", "sign", "turn" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + Directions = 0xF5EB, + + /// + /// The Font Awesome "discord" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "discord" })] + Discord = 0xF392, + + /// + /// The Font Awesome "discourse" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "discourse" })] + Discourse = 0xF393, + + /// + /// The Font Awesome "disease" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "disease", "bacteria", "cancer", "coronavirus", "covid-19", "flu", "illness", "infection", "pandemic", "sickness", "virus" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Science" })] + Disease = 0xF7FA, + + /// + /// The Font Awesome "display" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "display", "screen", "computer", "desktop", "imac" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware", "Humanitarian" })] + Display = 0xE163, + + /// + /// The Font Awesome "divide" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "division sign", "arithmetic", "calculus", "divide", "division", "math", "sign", "÷" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + Divide = 0xF529, + + /// + /// The Font Awesome "face-dizzy" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face dizzy", "dazed", "dead", "disapprove", "emoticon", "face" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + Dizzy = 0xF567, + + /// + /// The Font Awesome "dna" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "biologist", "dna", "double helix", "evolution", "gene", "genetic", "genetics", "helix", "life", "molecule", "protein" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Science" })] + Dna = 0xF471, + + /// + /// The Font Awesome "dochub" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "dochub" })] + Dochub = 0xF394, + + /// + /// The Font Awesome "docker" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "docker" })] + Docker = 0xF395, + + /// + /// The Font Awesome "dog" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "animal", "canine", "dog", "fauna", "mammal", "pet", "pooch", "puppy", "woof" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals" })] + Dog = 0xF6D3, + + /// + /// The Font Awesome "dollar-sign" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x24. + /// + [FontAwesomeSearchTerms(new[] { "dollar sign", "dollar sign", "currency", "dollar", "heavy dollar sign", "money" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Maps", "Money" })] + DollarSign = 0xF155, + + /// + /// The Font Awesome "dolly" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dolly", "carry", "shipping", "transport" })] + [FontAwesomeCategoriesAttribute(new[] { "Logistics", "Moving" })] + Dolly = 0xF472, + + /// + /// The Font Awesome "cart-flatbed" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cart flatbed", "carry", "inventory", "shipping", "transport" })] + [FontAwesomeCategoriesAttribute(new[] { "Logistics" })] + DollyFlatbed = 0xF474, + + /// + /// The Font Awesome "circle-dollar-to-slot" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle dollar to slot", "contribute", "generosity", "gift", "give" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Money", "Political" })] + Donate = 0xF4B9, + + /// + /// The Font Awesome "dong-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dong sign", "dong sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + DongSign = 0xE169, + + /// + /// The Font Awesome "door-closed" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "door closed", "doo", "door", "enter", "exit", "locked" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Security", "Travel + Hotel" })] + DoorClosed = 0xF52A, + + /// + /// The Font Awesome "door-open" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "door open", "enter", "exit", "welcome" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Security", "Travel + Hotel" })] + DoorOpen = 0xF52B, + + /// + /// The Font Awesome "circle-dot" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle dot", "bullseye", "button", "geometric", "notification", "radio", "radio button", "target" })] + [FontAwesomeCategoriesAttribute(new[] { "Toggle" })] + DotCircle = 0xF192, + + /// + /// The Font Awesome "dove" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bird", "dove", "fauna", "fly", "flying", "peace", "war" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Charity", "Political", "Religion" })] + Dove = 0xF4BA, + + /// + /// The Font Awesome "download" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "download", "export", "hard drive", "save", "transfer" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Devices + Hardware" })] + Download = 0xF019, + + /// + /// The Font Awesome "draft2digital" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "draft2digital" })] + Draft2digital = 0xF396, + + /// + /// The Font Awesome "compass-drafting" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "compass drafting", "design", "map", "mechanical drawing", "plot", "plotting" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Design" })] + DraftingCompass = 0xF568, + + /// + /// The Font Awesome "dragon" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dungeons & dragons", "d&d", "dnd", "dragon", "fairy tale", "fantasy", "fire", "lizard", "serpent" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Gaming" })] + Dragon = 0xF6D5, + + /// + /// The Font Awesome "draw-polygon" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "draw polygon", "anchors", "lines", "object", "render", "shape" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Maps" })] + DrawPolygon = 0xF5EE, + + /// + /// The Font Awesome "dribbble" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "dribbble" })] + Dribbble = 0xF17D, + + /// + /// The Font Awesome "square-dribbble" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square dribbble" })] + DribbbleSquare = 0xF397, + + /// + /// The Font Awesome "dropbox" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "dropbox" })] + Dropbox = 0xF16B, + + /// + /// The Font Awesome "drum" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "drum", "drumsticks", "instrument", "music", "percussion", "snare", "sound" })] + [FontAwesomeCategoriesAttribute(new[] { "Music + Audio" })] + Drum = 0xF569, + + /// + /// The Font Awesome "drum-steelpan" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "drum steelpan", "calypso", "instrument", "music", "percussion", "reggae", "snare", "sound", "steel", "tropical" })] + [FontAwesomeCategoriesAttribute(new[] { "Music + Audio" })] + DrumSteelpan = 0xF56A, + + /// + /// The Font Awesome "drumstick-bite" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "drumstick bite", "bone", "chicken", "leg", "meat", "poultry", "turkey" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage" })] + DrumstickBite = 0xF6D7, + + /// + /// The Font Awesome "drupal" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "drupal" })] + Drupal = 0xF1A9, + + /// + /// The Font Awesome "dumbbell" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dumbbell", "exercise", "gym", "strength", "weight", "weight-lifting" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness", "Travel + Hotel" })] + Dumbbell = 0xF44B, + + /// + /// The Font Awesome "dumpster" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dumpster", "alley", "bin", "commercial", "trash", "waste" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction" })] + Dumpster = 0xF793, + + /// + /// The Font Awesome "dumpster-fire" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dumpster fire", "alley", "bin", "commercial", "danger", "dangerous", "euphemism", "flame", "heat", "hot", "trash", "waste" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Political" })] + DumpsterFire = 0xF794, + + /// + /// The Font Awesome "dungeon" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dungeon", "dungeons & dragons", "building", "d&d", "dnd", "door", "entrance", "fantasy", "gate" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Gaming", "Household", "Security" })] + Dungeon = 0xF6D9, + + /// + /// The Font Awesome "dyalog" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "dyalog" })] + Dyalog = 0xF399, + + /// + /// The Font Awesome "earlybirds" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "earlybirds" })] + Earlybirds = 0xF39A, + + /// + /// The Font Awesome "earth-oceania" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "earth oceania", "all", "australia", "country", "earth", "global", "globe", "gps", "language", "localize", "location", "map", "melanesia", "micronesia", "new zealand", "online", "place", "planet", "polynesia", "translate", "travel", "world" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + EarthOceania = 0xE47B, + + /// + /// The Font Awesome "ebay" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ebay" })] + Ebay = 0xF4F4, + + /// + /// The Font Awesome "edge" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "edge", "browser", "ie" })] + Edge = 0xF282, + + /// + /// The Font Awesome "pen-to-square" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pen to square", "edit", "pen", "pencil", "update", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Editing", "Writing" })] + Edit = 0xF044, + + /// + /// The Font Awesome "egg" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "breakfast", "chicken", "easter", "egg", "food", "shell", "yolk" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage" })] + Egg = 0xF7FB, + + /// + /// The Font Awesome "eject" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "abort", "cancel", "cd", "discharge", "eject", "eject button" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + Eject = 0xF052, + + /// + /// The Font Awesome "elementor" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "elementor" })] + Elementor = 0xF430, + + /// + /// The Font Awesome "elevator" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "accessibility", "elevator", "hoist", "lift", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel", "Users + People" })] + Elevator = 0xE16D, + + /// + /// The Font Awesome "ellipsis" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ellipsis", "dots", "drag", "kebab", "list", "menu", "nav", "navigation", "ol", "pacman", "reorder", "settings", "ul" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + EllipsisH = 0xF141, + + /// + /// The Font Awesome "ellipsis-vertical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ellipsis vertical", "dots", "drag", "kebab", "list", "menu", "nav", "navigation", "ol", "reorder", "settings", "ul" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + EllipsisV = 0xF142, + + /// + /// The Font Awesome "ello" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ello" })] + Ello = 0xF5F1, + + /// + /// The Font Awesome "ember" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ember" })] + Ember = 0xF423, + + /// + /// The Font Awesome "empire" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "empire" })] + Empire = 0xF1D1, + + /// + /// The Font Awesome "envelope" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "back of envelope", "e-mail", "email", "envelope", "letter", "mail", "message", "notification", "support" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Humanitarian", "Social", "Writing" })] + Envelope = 0xF0E0, + + /// + /// The Font Awesome "envelope-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "envelope circle check", "check", "email", "envelope", "mail", "not affected", "ok", "okay", "read", "sent" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Humanitarian" })] + EnvelopeCircleCheck = 0xE4E8, + + /// + /// The Font Awesome "envelope-open" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "envelope open", "e-mail", "email", "letter", "mail", "message", "notification", "support" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Writing" })] + EnvelopeOpen = 0xF2B6, + + /// + /// The Font Awesome "envelope-open-text" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "envelope open text", "e-mail", "email", "letter", "mail", "message", "notification", "support" })] + [FontAwesomeCategoriesAttribute(new[] { "Marketing" })] + EnvelopeOpenText = 0xF658, + + /// + /// The Font Awesome "square-envelope" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square envelope", "e-mail", "email", "letter", "mail", "message", "notification", "support" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication" })] + EnvelopeSquare = 0xF199, + + /// + /// The Font Awesome "envira" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "envira", "leaf" })] + Envira = 0xF299, + + /// + /// The Font Awesome "equals" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x3D. + /// + [FontAwesomeSearchTerms(new[] { "equals", "equals sign", "arithmetic", "even", "match", "math" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics", "Punctuation + Symbols" })] + Equals = 0xF52C, + + /// + /// The Font Awesome "eraser" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "eraser", "art", "delete", "remove", "rubber" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Writing" })] + Eraser = 0xF12D, + + /// + /// The Font Awesome "erlang" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "erlang" })] + Erlang = 0xF39D, + + /// + /// The Font Awesome "ethereum" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ethereum" })] + [FontAwesomeCategoriesAttribute(new[] { "Money", "Shopping" })] + Ethereum = 0xF42E, + + /// + /// The Font Awesome "ethernet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ethernet", "cable", "cat 5", "cat 6", "connection", "hardware", "internet", "network", "wired" })] + [FontAwesomeCategoriesAttribute(new[] { "Connectivity", "Devices + Hardware" })] + Ethernet = 0xF796, + + /// + /// The Font Awesome "etsy" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "etsy" })] + Etsy = 0xF2D7, + + /// + /// The Font Awesome "euro-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "euro sign", "euro sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + EuroSign = 0xF153, + + /// + /// The Font Awesome "evernote" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "evernote" })] + Evernote = 0xF839, + + /// + /// The Font Awesome "right-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "right left", "arrow", "arrows", "exchange", "reciprocate", "return", "swap", "transfer" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ExchangeAlt = 0xF362, + + /// + /// The Font Awesome "exclamation" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x21. + /// + [FontAwesomeSearchTerms(new[] { "!", "exclamation mark", "alert", "danger", "error", "exclamation", "important", "mark", "notice", "notification", "notify", "outlined", "problem", "punctuation", "red exclamation mark", "warning", "white exclamation mark" })] + [FontAwesomeCategoriesAttribute(new[] { "Alert", "Punctuation + Symbols" })] + Exclamation = 0xF12A, + + /// + /// The Font Awesome "circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle exclamation", "affect", "alert", "damage", "danger", "error", "important", "notice", "notification", "notify", "problem", "warning" })] + [FontAwesomeCategoriesAttribute(new[] { "Alert", "Punctuation + Symbols" })] + ExclamationCircle = 0xF06A, + + /// + /// The Font Awesome "triangle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "triangle exclamation", "alert", "danger", "error", "important", "notice", "notification", "notify", "problem", "warnin", "warning" })] + [FontAwesomeCategoriesAttribute(new[] { "Alert" })] + ExclamationTriangle = 0xF071, + + /// + /// The Font Awesome "expand" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "expand", "bigger", "crop", "enlarge", "focus", "fullscreen", "resize", "viewfinder" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + Expand = 0xF065, + + /// + /// The Font Awesome "up-right-and-down-left-from-center" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "up right and down left from center", "arrows", "bigger", "enlarge", "fullscreen", "resize" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Media Playback" })] + ExpandAlt = 0xF424, + + /// + /// The Font Awesome "maximize" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "maximize", "bigger", "enlarge", "fullscreen", "move", "resize" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Media Playback" })] + ExpandArrowsAlt = 0xF31E, + + /// + /// The Font Awesome "expeditedssl" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "expeditedssl" })] + Expeditedssl = 0xF23E, + + /// + /// The Font Awesome "explosion" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "blast", "blowup", "boom", "crash", "detonation", "explosion" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Humanitarian", "Science Fiction", "Security" })] + Explosion = 0xE4E9, + + /// + /// The Font Awesome "up-right-from-square" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "up right from square", "external-link", "new", "open", "share" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ExternalLinkAlt = 0xF35D, + + /// + /// The Font Awesome "square-up-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square up right", "arrow", "diagonal", "direction", "external-link-square", "intercardinal", "new", "northeast", "open", "share", "up-right arrow" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ExternalLinkSquareAlt = 0xF360, + + /// + /// The Font Awesome "eye" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "body", "eye", "look", "optic", "see", "seen", "show", "sight", "views", "visible" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Design", "Maps", "Medical + Health", "Photos + Images", "Security" })] + Eye = 0xF06E, + + /// + /// The Font Awesome "eye-dropper" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "eye dropper", "beaker", "clone", "color", "copy", "eyedropper", "pipette" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Editing", "Medical + Health", "Photos + Images", "Science" })] + EyeDropper = 0xF1FB, + + /// + /// The Font Awesome "eye-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "eye slash", "blind", "hide", "show", "toggle", "unseen", "views", "visible", "visiblity" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Editing", "Maps", "Photos + Images", "Security" })] + EyeSlash = 0xF070, + + /// + /// The Font Awesome "facebook" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "facebook", "facebook-official", "social network" })] + Facebook = 0xF09A, + + /// + /// The Font Awesome "facebook-f" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "facebook f", "facebook" })] + FacebookF = 0xF39E, + + /// + /// The Font Awesome "facebook-messenger" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "facebook messenger" })] + FacebookMessenger = 0xF39F, + + /// + /// The Font Awesome "square-facebook" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square facebook", "social network" })] + FacebookSquare = 0xF082, + + /// + /// The Font Awesome "fan" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "fan", "ac", "air conditioning", "blade", "blower", "cool", "hot" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Household", "Spinners" })] + Fan = 0xF863, + + /// + /// The Font Awesome "fantasy-flight-games" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "fantasy flight games", "dungeons & dragons", "d&d", "dnd", "fantasy", "game", "gaming", "tabletop" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + FantasyFlightGames = 0xF6DC, + + /// + /// The Font Awesome "backward-fast" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "backward fast", "arrow", "beginning", "first", "last track button", "previous", "previous scene", "previous track", "rewind", "start", "triangle" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + FastBackward = 0xF049, + + /// + /// The Font Awesome "forward-fast" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "forward fast", "arrow", "end", "last", "next", "next scene", "next track", "next track button", "triangle" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + FastForward = 0xF050, + + /// + /// The Font Awesome "faucet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "faucet", "covid-19", "drinking", "drip", "house", "hygiene", "kitchen", "potable", "potable water", "sanitation", "sink", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Household" })] + Faucet = 0xE005, + + /// + /// The Font Awesome "faucet-drip" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "faucet drip", "drinking", "drip", "house", "hygiene", "kitchen", "potable", "potable water", "sanitation", "sink", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Household", "Humanitarian" })] + FaucetDrip = 0xE006, + + /// + /// The Font Awesome "fax" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "fax icon", "business", "communicate", "copy", "facsimile", "fax", "fax machine", "send" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Devices + Hardware", "Humanitarian" })] + Fax = 0xF1AC, + + /// + /// The Font Awesome "feather" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bird", "feather", "flight", "light", "plucked", "plumage", "quill", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Nature" })] + Feather = 0xF52D, + + /// + /// The Font Awesome "feather-pointed" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "feather pointed", "bird", "light", "plucked", "quill", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Nature" })] + FeatherAlt = 0xF56B, + + /// + /// The Font Awesome "fedex" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "fedex", "federal express", "package", "shipping" })] + Fedex = 0xF797, + + /// + /// The Font Awesome "fedora" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "fedora", "linux", "operating system", "os" })] + Fedora = 0xF798, + + /// + /// The Font Awesome "person-dress" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person dress", "man", "skirt", "woman" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + Female = 0xF182, + + /// + /// The Font Awesome "ferry" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ferry", "barge", "boat", "carry", "ferryboat", "ship" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maritime", "Transportation" })] + Ferry = 0xE4EA, + + /// + /// The Font Awesome "jet-fighter" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "jet fighter", "airforce", "airplane", "airport", "fast", "fly", "goose", "marines", "maverick", "military", "plane", "quick", "top gun", "transportation", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Transportation" })] + FighterJet = 0xF0FB, + + /// + /// The Font Awesome "figma" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "figma", "app", "design", "interface" })] + Figma = 0xF799, + + /// + /// The Font Awesome "file" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file", "empty document", "document", "new", "page", "page facing up", "pdf", "resume" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Coding", "Files", "Humanitarian", "Shapes", "Writing" })] + File = 0xF15B, + + /// + /// The Font Awesome "file-lines" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file lines", "document", "document with text", "document", "file-text", "invoice", "new", "page", "pdf" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Coding", "Files", "Writing" })] + FileAlt = 0xF15C, + + /// + /// The Font Awesome "file-zipper" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file zipper", ".zip", "bundle", "compress", "compression", "download", "zip" })] + [FontAwesomeCategoriesAttribute(new[] { "Files" })] + FileArchive = 0xF1C6, + + /// + /// The Font Awesome "file-audio" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file audio", "document", "mp3", "music", "page", "play", "sound" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Film + Video", "Music + Audio" })] + FileAudio = 0xF1C7, + + /// + /// The Font Awesome "file-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file circle check", "document", "file", "not affected", "ok", "okay", "paper" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Humanitarian" })] + FileCircleCheck = 0xE5A0, + + /// + /// The Font Awesome "file-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file circle exclamation", "document", "file", "paper" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Humanitarian" })] + FileCircleExclamation = 0xE4EB, + + /// + /// The Font Awesome "file-circle-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file circle minus", "document", "file", "paper" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Humanitarian" })] + FileCircleMinus = 0xE4ED, + + /// + /// The Font Awesome "file-circle-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file circle plus", "add", "document", "file", "new", "page", "paper", "pdf" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Files", "Humanitarian" })] + FileCirclePlus = 0xE494, + + /// + /// The Font Awesome "file-circle-question" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file circle question", "document", "file", "paper" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Humanitarian" })] + FileCircleQuestion = 0xE4EF, + + /// + /// The Font Awesome "file-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file circle xmark", "document", "file", "paper" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Humanitarian" })] + FileCircleXmark = 0xE5A1, + + /// + /// The Font Awesome "file-code" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file code", "css", "development", "document", "html" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Files" })] + FileCode = 0xF1C9, + + /// + /// The Font Awesome "file-contract" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file contract", "agreement", "binding", "document", "legal", "signature" })] + [FontAwesomeCategoriesAttribute(new[] { "Security" })] + FileContract = 0xF56C, + + /// + /// The Font Awesome "file-csv" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file csv", "document", "excel", "numbers", "spreadsheets", "table" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Humanitarian" })] + FileCsv = 0xF6DD, + + /// + /// The Font Awesome "file-arrow-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file arrow down", "document", "export", "save" })] + [FontAwesomeCategoriesAttribute(new[] { "Files" })] + FileDownload = 0xF56D, + + /// + /// The Font Awesome "file-excel" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file excel", "csv", "document", "numbers", "spreadsheets", "table" })] + [FontAwesomeCategoriesAttribute(new[] { "Files" })] + FileExcel = 0xF1C3, + + /// + /// The Font Awesome "file-export" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file export", "download", "save" })] + [FontAwesomeCategoriesAttribute(new[] { "Files" })] + FileExport = 0xF56E, + + /// + /// The Font Awesome "file-image" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file image", "document with picture", "document", "image", "jpg", "photo", "png" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Photos + Images" })] + FileImage = 0xF1C5, + + /// + /// The Font Awesome "file-import" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file import", "copy", "document", "send", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Files" })] + FileImport = 0xF56F, + + /// + /// The Font Awesome "file-invoice" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file invoice", "account", "bill", "charge", "document", "payment", "receipt" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + FileInvoice = 0xF570, + + /// + /// The Font Awesome "file-invoice-dollar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file invoice dollar", "$", "account", "bill", "charge", "document", "dollar-sign", "money", "payment", "receipt", "usd" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + FileInvoiceDollar = 0xF571, + + /// + /// The Font Awesome "file-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file medical", "document", "health", "history", "prescription", "record" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + FileMedical = 0xF477, + + /// + /// The Font Awesome "file-waveform" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file waveform", "document", "health", "history", "prescription", "record" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + FileMedicalAlt = 0xF478, + + /// + /// The Font Awesome "file-pdf" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file pdf", "acrobat", "document", "preview", "save" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Humanitarian" })] + FilePdf = 0xF1C1, + + /// + /// The Font Awesome "file-pen" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file pen", "edit", "memo", "pen", "pencil", "update", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Humanitarian" })] + FilePen = 0xF31C, + + /// + /// The Font Awesome "file-powerpoint" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file powerpoint", "display", "document", "keynote", "presentation" })] + [FontAwesomeCategoriesAttribute(new[] { "Files" })] + FilePowerpoint = 0xF1C4, + + /// + /// The Font Awesome "file-prescription" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file prescription", "document", "drugs", "medical", "medicine", "rx" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + FilePrescription = 0xF572, + + /// + /// The Font Awesome "file-shield" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file shield", "antivirus", "data", "document", "protect", "safe", "safety", "secure" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Humanitarian", "Security" })] + FileShield = 0xE4F0, + + /// + /// The Font Awesome "file-signature" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file signature", "john hancock", "contract", "document", "name" })] + [FontAwesomeCategoriesAttribute(new[] { "Security" })] + FileSignature = 0xF573, + + /// + /// The Font Awesome "file-arrow-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file arrow up", "document", "import", "page", "save" })] + [FontAwesomeCategoriesAttribute(new[] { "Files" })] + FileUpload = 0xF574, + + /// + /// The Font Awesome "file-video" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file video", "document", "m4v", "movie", "mp4", "play" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Film + Video" })] + FileVideo = 0xF1C8, + + /// + /// The Font Awesome "file-word" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "file word", "document", "edit", "page", "text", "writing" })] + [FontAwesomeCategoriesAttribute(new[] { "Files" })] + FileWord = 0xF1C2, + + /// + /// The Font Awesome "fill" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "fill", "bucket", "color", "paint", "paint bucket" })] + [FontAwesomeCategoriesAttribute(new[] { "Design" })] + Fill = 0xF575, + + /// + /// The Font Awesome "fill-drip" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "fill drip", "bucket", "color", "drop", "paint", "paint bucket", "spill" })] + [FontAwesomeCategoriesAttribute(new[] { "Design" })] + FillDrip = 0xF576, + + /// + /// The Font Awesome "film" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cinema", "film", "film frames", "frames", "movie", "strip", "video" })] + [FontAwesomeCategoriesAttribute(new[] { "Film + Video", "Photos + Images" })] + Film = 0xF008, + + /// + /// The Font Awesome "filter" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "filter", "funnel", "options", "separate", "sort" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Science" })] + Filter = 0xF0B0, + + /// + /// The Font Awesome "filter-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "filter circle xmark", "cancel", "funnel", "options", "remove", "separate", "sort" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + FilterCircleXmark = 0xE17B, + + /// + /// The Font Awesome "fingerprint" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "fingerprint", "human", "id", "identification", "lock", "smudge", "touch", "unique", "unlock" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Security" })] + Fingerprint = 0xF577, + + /// + /// The Font Awesome "fire" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "burn", "caliente", "fire", "flame", "heat", "hot", "popular", "tool" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Energy", "Maps", "Nature", "Science" })] + Fire = 0xF06D, + + /// + /// The Font Awesome "fire-flame-curved" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "fire flame curved", "burn", "caliente", "flame", "heat", "hot", "popular" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Energy", "Maps", "Science", "Sports + Fitness" })] + FireAlt = 0xF7E4, + + /// + /// The Font Awesome "fire-burner" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "fire burner", "cook", "fire", "flame", "kitchen", "stove" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Household", "Humanitarian" })] + FireBurner = 0xE4F1, + + /// + /// The Font Awesome "fire-extinguisher" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "fire extinguisher", "burn", "caliente", "extinguish", "fire", "fire extinguisher", "fire fighter", "flame", "heat", "hot", "quench", "rescue" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Maps" })] + FireExtinguisher = 0xF134, + + /// + /// The Font Awesome "firefox" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "firefox", "browser" })] + Firefox = 0xF269, + + /// + /// The Font Awesome "firefox-browser" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "firefox browser", "browser" })] + FirefoxBrowser = 0xF907, + + /// + /// The Font Awesome "kit-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "kit medical", "emergency", "emt", "health", "medical", "rescue" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Medical + Health" })] + FirstAid = 0xF479, + + /// + /// The Font Awesome "firstdraft" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "firstdraft" })] + Firstdraft = 0xF3A1, + + /// + /// The Font Awesome "first-order" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "first order" })] + FirstOrder = 0xF2B0, + + /// + /// The Font Awesome "first-order-alt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "first order alt" })] + FirstOrderAlt = 0xF50A, + + /// + /// The Font Awesome "fish" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pisces", "fauna", "fish", "gold", "seafood", "swimming", "zodiac" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Food + Beverage", "Maritime" })] + Fish = 0xF578, + + /// + /// The Font Awesome "fish-fins" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "fish fins", "fish", "fishery", "pisces", "seafood" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Food + Beverage", "Humanitarian", "Maritime" })] + FishFins = 0xE4F2, + + /// + /// The Font Awesome "hand-fist" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand fist", "dungeons & dragons", "clenched", "d&d", "dnd", "fantasy", "fist", "hand", "ki", "monk", "punch", "raised fist", "resist", "strength", "unarmed combat" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming", "Hands", "Political" })] + FistRaised = 0xF6DE, + + /// + /// The Font Awesome "flag" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "flag", "black flag", "country", "notice", "notification", "notify", "pole", "report", "symbol", "waving" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Maps" })] + Flag = 0xF024, + + /// + /// The Font Awesome "flag-checkered" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "flag checkered", "checkered", "chequered", "chequered flag", "finish", "notice", "notification", "notify", "pole", "racing", "report", "start", "symbol", "win" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + FlagCheckered = 0xF11E, + + /// + /// The Font Awesome "flag-usa" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "flag usa", "betsy ross", "country", "fla", "flag: united states", "old glory", "stars", "stripes", "symbol" })] + [FontAwesomeCategoriesAttribute(new[] { "Political" })] + FlagUsa = 0xF74D, + + /// + /// The Font Awesome "flask" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "flask", "beaker", "experimental", "labs", "science" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Maps", "Medical + Health", "Science" })] + Flask = 0xF0C3, + + /// + /// The Font Awesome "flask-vial" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "flask vial", "ampule", "chemistry", "lab", "laboratory", "test", "test tube" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health", "Science" })] + FlaskVial = 0xE4F3, + + /// + /// The Font Awesome "flickr" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "flickr" })] + Flickr = 0xF16E, + + /// + /// The Font Awesome "flipboard" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "flipboard" })] + Flipboard = 0xF44D, + + /// + /// The Font Awesome "florin-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "florin sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + FlorinSign = 0xE184, + + /// + /// The Font Awesome "face-flushed" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face flushed", "dazed", "embarrassed", "emoticon", "face", "flushed", "flushed face" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + Flushed = 0xF579, + + /// + /// The Font Awesome "fly" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "fly" })] + Fly = 0xF417, + + /// + /// The Font Awesome "folder" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "black folder", "archive", "directory", "document", "file", "file folder", "folder" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Coding", "Files", "Shapes", "Writing" })] + Folder = 0xF07B, + + /// + /// The Font Awesome "folder-closed" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "folder closed", "file" })] + [FontAwesomeCategoriesAttribute(new[] { "Files" })] + FolderClosed = 0xE185, + + /// + /// The Font Awesome "folder-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "folder minus", "archive", "delete", "directory", "document", "file", "negative", "remove" })] + [FontAwesomeCategoriesAttribute(new[] { "Business" })] + FolderMinus = 0xF65D, + + /// + /// The Font Awesome "folder-open" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "folder open", "open folder", "archive", "directory", "document", "empty", "file", "folder", "new", "open", "open file folder" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Coding", "Files", "Writing" })] + FolderOpen = 0xF07C, + + /// + /// The Font Awesome "folder-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "folder plus", "add", "archive", "create", "directory", "document", "file", "new", "positive" })] + [FontAwesomeCategoriesAttribute(new[] { "Business" })] + FolderPlus = 0xF65E, + + /// + /// The Font Awesome "folder-tree" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "folder tree", "archive", "directory", "document", "file", "search", "structure" })] + [FontAwesomeCategoriesAttribute(new[] { "Business" })] + FolderTree = 0xF802, + + /// + /// The Font Awesome "font" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "font", "alphabet", "glyph", "text", "type", "typeface" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + Font = 0xF031, + + /// + /// The Font Awesome "font-awesome" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "font awesome", "awesome", "flag", "font", "icons", "typeface" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Design" })] + FontAwesome = 0xF2B4, + + /// + /// The Font Awesome "square-font-awesome-stroke" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square font awesome stroke" })] + FontAwesomeAlt = 0xF35C, + + /// + /// The Font Awesome "font-awesome" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF2B4. + /// + [FontAwesomeSearchTerms(new[] { "font awesome", "awesome", "flag", "font", "icons", "typeface" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Design" })] + FontAwesomeFlag = 0xF425, + + /// + /// The Font Awesome "font-awesome" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF2B4. + /// + [FontAwesomeSearchTerms(new[] { "font awesome", "awesome", "flag", "font", "icons", "typeface" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Design" })] + FontAwesomeLogoFull = 0xF4E6, + + /// + /// The Font Awesome "fonticons" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "fonticons" })] + Fonticons = 0xF280, + + /// + /// The Font Awesome "fonticons-fi" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "fonticons fi" })] + FonticonsFi = 0xF3A2, + + /// + /// The Font Awesome "football" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "american", "american football", "ball", "fall", "football", "nfl", "pigskin", "seasonal" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + FootballBall = 0xF44E, + + /// + /// The Font Awesome "fort-awesome" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "fort awesome", "castle" })] + FortAwesome = 0xF286, + + /// + /// The Font Awesome "fort-awesome-alt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "fort awesome alt", "castle" })] + FortAwesomeAlt = 0xF3A3, + + /// + /// The Font Awesome "forumbee" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "forumbee" })] + Forumbee = 0xF211, + + /// + /// The Font Awesome "forward" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow", "double", "fast", "fast-forward button", "forward", "next", "skip" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + Forward = 0xF04E, + + /// + /// The Font Awesome "foursquare" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "foursquare" })] + Foursquare = 0xF180, + + /// + /// The Font Awesome "franc-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "franc sign", "french franc sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + FrancSign = 0xE18F, + + /// + /// The Font Awesome "freebsd" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "freebsd" })] + Freebsd = 0xF3A4, + + /// + /// The Font Awesome "free-code-camp" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "free code camp" })] + FreeCodeCamp = 0xF2C5, + + /// + /// The Font Awesome "frog" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "frog", "amphibian", "bullfrog", "fauna", "hop", "kermit", "kiss", "prince", "ribbit", "toad", "wart" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Camping", "Nature", "Science" })] + Frog = 0xF52E, + + /// + /// The Font Awesome "face-frown" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face frown", "disapprove", "emoticon", "face", "frown", "frowning face", "rating", "sad" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Emoji", "Users + People" })] + Frown = 0xF119, + + /// + /// The Font Awesome "face-frown-open" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face frown open", "disapprove", "emoticon", "face", "frown", "frowning face with open mouth", "mouth", "open", "rating", "sad" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + FrownOpen = 0xF57A, + + /// + /// The Font Awesome "fulcrum" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "fulcrum" })] + Fulcrum = 0xF50B, + + /// + /// The Font Awesome "filter-circle-dollar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "filter circle dollar", "filter", "money", "options", "separate", "sort" })] + [FontAwesomeCategoriesAttribute(new[] { "Marketing" })] + FunnelDollar = 0xF662, + + /// + /// The Font Awesome "futbol" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "futbol", "ball", "football", "mls", "soccer", "soccer ball" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + Futbol = 0xF1E3, + + /// + /// The Font Awesome "galactic-republic" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "galactic republic", "politics", "star wars" })] + [FontAwesomeCategoriesAttribute(new[] { "Science Fiction" })] + GalacticRepublic = 0xF50C, + + /// + /// The Font Awesome "galactic-senate" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "galactic senate", "star wars" })] + [FontAwesomeCategoriesAttribute(new[] { "Science Fiction" })] + GalacticSenate = 0xF50D, + + /// + /// The Font Awesome "gamepad" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gamepad", "arcade", "controller", "d-pad", "joystick", "video", "video game" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Devices + Hardware", "Gaming", "Maps" })] + Gamepad = 0xF11B, + + /// + /// The Font Awesome "gas-pump" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gas pump", "car", "diesel", "fuel", "fuel pump", "fuelpump", "gas", "gasoline", "petrol", "pump", "station" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Energy", "Humanitarian", "Logistics" })] + GasPump = 0xF52F, + + /// + /// The Font Awesome "gauge" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gauge", "dashboard", "fast", "odometer", "speed", "speedometer" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive" })] + Gauge = 0xF624, + + /// + /// The Font Awesome "gauge-simple" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gauge simple", "dashboard", "fast", "odometer", "speed", "speedometer" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive" })] + GaugeSimple = 0xF629, + + /// + /// The Font Awesome "gauge-simple-high" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gauge simple high", "dashboard", "fast", "odometer", "speed", "speedometer" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive" })] + GaugeSimpleHigh = 0xF62A, + + /// + /// The Font Awesome "gavel" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gavel", "hammer", "judge", "law", "lawyer", "opinion" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + Gavel = 0xF0E3, + + /// + /// The Font Awesome "gem" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "diamond", "gem", "gem stone", "jewel", "jewelry", "sapphire", "stone", "treasure" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + Gem = 0xF3A5, + + /// + /// The Font Awesome "genderless" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "genderless", "androgynous", "asexual", "gender", "sexless" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + Genderless = 0xF22D, + + /// + /// The Font Awesome "get-pocket" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "get pocket" })] + GetPocket = 0xF265, + + /// + /// The Font Awesome "gg" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "gg" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + Gg = 0xF260, + + /// + /// The Font Awesome "gg-circle" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "gg circle" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + GgCircle = 0xF261, + + /// + /// The Font Awesome "ghost" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "apparition", "blinky", "clyde", "creature", "face", "fairy tale", "fantasy", "floating", "ghost", "halloween", "holiday", "inky", "monster", "pacman", "pinky", "spirit" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming", "Halloween" })] + Ghost = 0xF6E2, + + /// + /// The Font Awesome "gift" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "box", "celebration", "christmas", "generosity", "gift", "giving", "holiday", "party", "present", "wrapped", "wrapped gift", "xmas" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Holidays", "Maps", "Shopping" })] + Gift = 0xF06B, + + /// + /// The Font Awesome "gifts" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gifts", "christmas", "generosity", "giving", "holiday", "party", "present", "wrapped", "xmas" })] + [FontAwesomeCategoriesAttribute(new[] { "Holidays", "Shopping" })] + Gifts = 0xF79C, + + /// + /// The Font Awesome "git" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "git" })] + Git = 0xF1D3, + + /// + /// The Font Awesome "git-alt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "git alt" })] + GitAlt = 0xF841, + + /// + /// The Font Awesome "github" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "github", "octocat" })] + Github = 0xF09B, + + /// + /// The Font Awesome "github-alt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "github alt", "octocat" })] + GithubAlt = 0xF113, + + /// + /// The Font Awesome "square-github" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square github", "octocat" })] + GithubSquare = 0xF092, + + /// + /// The Font Awesome "gitkraken" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "gitkraken" })] + Gitkraken = 0xF3A6, + + /// + /// The Font Awesome "gitlab" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "gitlab", "axosoft" })] + Gitlab = 0xF296, + + /// + /// The Font Awesome "square-git" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square git" })] + GitSquare = 0xF1D2, + + /// + /// The Font Awesome "gitter" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "gitter" })] + Gitter = 0xF426, + + /// + /// The Font Awesome "champagne-glasses" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "champagne glasses", "alcohol", "bar", "beverage", "celebrate", "celebration", "champagne", "clink", "clinking glasses", "drink", "glass", "holiday", "new year's eve", "party", "toast" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Holidays" })] + GlassCheers = 0xF79F, + + /// + /// The Font Awesome "glasses" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "glasses", "hipster", "nerd", "reading", "sight", "spectacles", "vision" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Clothing + Fashion" })] + Glasses = 0xF530, + + /// + /// The Font Awesome "martini-glass-empty" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "martini glass empty", "alcohol", "bar", "beverage", "drink", "liquor" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Maps", "Travel + Hotel" })] + GlassMartini = 0xF000, + + /// + /// The Font Awesome "martini-glass" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "martini glass", "alcohol", "bar", "beverage", "cocktail", "cocktail glass", "drink", "glass", "liquor" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Travel + Hotel" })] + GlassMartiniAlt = 0xF57B, + + /// + /// The Font Awesome "glass-water" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "glass water", "potable", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Humanitarian" })] + GlassWater = 0xE4F4, + + /// + /// The Font Awesome "glass-water-droplet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "glass water droplet", "potable", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Humanitarian" })] + GlassWaterDroplet = 0xE4F5, + + /// + /// The Font Awesome "whiskey-glass" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "whiskey glass", "alcohol", "bar", "beverage", "bourbon", "drink", "glass", "liquor", "neat", "rye", "scotch", "shot", "tumbler", "tumbler glass", "whisky" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage" })] + GlassWhiskey = 0xF7A0, + + /// + /// The Font Awesome "glide" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "glide" })] + Glide = 0xF2A5, + + /// + /// The Font Awesome "glide-g" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "glide g" })] + GlideG = 0xF2A6, + + /// + /// The Font Awesome "globe" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "all", "coordinates", "country", "earth", "global", "globe", "globe with meridians", "gps", "internet", "language", "localize", "location", "map", "meridians", "network", "online", "place", "planet", "translate", "travel", "world" })] + [FontAwesomeCategoriesAttribute(new[] { "Astronomy", "Business", "Charity", "Connectivity", "Maps" })] + Globe = 0xF0AC, + + /// + /// The Font Awesome "earth-africa" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "earth africa", "africa", "all", "country", "earth", "europe", "global", "globe", "gps", "language", "localize", "location", "map", "online", "place", "planet", "translate", "travel", "world" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + GlobeAfrica = 0xF57C, + + /// + /// The Font Awesome "earth-americas" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "earth americas", "all", "america", "country", "earth", "global", "globe", "gps", "language", "localize", "location", "map", "online", "place", "planet", "translate", "travel", "world" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + GlobeAmericas = 0xF57D, + + /// + /// The Font Awesome "earth-asia" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "earth asia", "all", "asia", "australia", "country", "earth", "global", "globe", "gps", "language", "localize", "location", "map", "online", "place", "planet", "translate", "travel", "world" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + GlobeAsia = 0xF57E, + + /// + /// The Font Awesome "earth-europe" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "earth europe", "all", "country", "earth", "europe", "global", "globe", "gps", "language", "localize", "location", "map", "online", "place", "planet", "translate", "travel", "world" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + GlobeEurope = 0xF7A2, + + /// + /// The Font Awesome "gofore" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "gofore" })] + Gofore = 0xF3A7, + + /// + /// The Font Awesome "golf-ball-tee" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "golf ball tee", "caddy", "eagle", "putt", "tee" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + GolfBall = 0xF450, + + /// + /// The Font Awesome "goodreads" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "goodreads" })] + Goodreads = 0xF3A8, + + /// + /// The Font Awesome "goodreads-g" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "goodreads g" })] + GoodreadsG = 0xF3A9, + + /// + /// The Font Awesome "google" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "google" })] + Google = 0xF1A0, + + /// + /// The Font Awesome "google-drive" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "google drive" })] + GoogleDrive = 0xF3AA, + + /// + /// The Font Awesome "google-play" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "google play" })] + GooglePlay = 0xF3AB, + + /// + /// The Font Awesome "google-plus" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "google plus", "google-plus-circle", "google-plus-official" })] + GooglePlus = 0xF2B3, + + /// + /// The Font Awesome "google-plus-g" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "google plus g", "google-plus", "social network" })] + GooglePlusG = 0xF0D5, + + /// + /// The Font Awesome "square-google-plus" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square google plus", "social network" })] + GooglePlusSquare = 0xF0D4, + + /// + /// The Font Awesome "google-wallet" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "google wallet" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + GoogleWallet = 0xF1EE, + + /// + /// The Font Awesome "gopuram" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gopuram", "building", "entrance", "hinduism", "temple", "tower" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Religion" })] + Gopuram = 0xF664, + + /// + /// The Font Awesome "graduation-cap" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "graduation cap", "cap", "celebration", "ceremony", "clothing", "college", "graduate", "graduation", "graduation cap", "hat", "learning", "school", "student" })] + [FontAwesomeCategoriesAttribute(new[] { "Clothing + Fashion", "Education", "Maps" })] + GraduationCap = 0xF19D, + + /// + /// The Font Awesome "gratipay" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "gratipay", "favorite", "heart", "like", "love" })] + Gratipay = 0xF184, + + /// + /// The Font Awesome "grav" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "grav" })] + Grav = 0xF2D6, + + /// + /// The Font Awesome "greater-than" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x3E. + /// + [FontAwesomeSearchTerms(new[] { "greater than", "greater-than sign", "arithmetic", "compare", "math" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics", "Punctuation + Symbols" })] + GreaterThan = 0xF531, + + /// + /// The Font Awesome "greater-than-equal" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "greater than equal", "arithmetic", "compare", "math" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + GreaterThanEqual = 0xF532, + + /// + /// The Font Awesome "face-grimace" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grimace", "cringe", "emoticon", "face", "grimace", "grimacing face", "teeth" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + Grimace = 0xF57F, + + /// + /// The Font Awesome "face-grin" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin", "emoticon", "face", "grin", "grinning face", "laugh", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + Grin = 0xF580, + + /// + /// The Font Awesome "face-grin-wide" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin wide", "emoticon", "face", "grinning face with big eyes", "laugh", "mouth", "open", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinAlt = 0xF581, + + /// + /// The Font Awesome "face-grin-beam" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin beam", "emoticon", "eye", "face", "grinning face with smiling eyes", "laugh", "mouth", "open", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinBeam = 0xF582, + + /// + /// The Font Awesome "face-grin-beam-sweat" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin beam sweat", "cold", "embarass", "emoticon", "face", "grinning face with sweat", "open", "smile", "sweat" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinBeamSweat = 0xF583, + + /// + /// The Font Awesome "face-grin-hearts" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin hearts", "emoticon", "eye", "face", "love", "smile", "smiling face with heart-eyes" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji", "Holidays" })] + GrinHearts = 0xF584, + + /// + /// The Font Awesome "face-grin-squint" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin squint", "emoticon", "face", "grinning squinting face", "laugh", "mouth", "satisfied", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinSquint = 0xF585, + + /// + /// The Font Awesome "face-grin-squint-tears" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin squint tears", "emoticon", "face", "floor", "happy", "laugh", "rolling", "rolling on the floor laughing", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinSquintTears = 0xF586, + + /// + /// The Font Awesome "face-grin-stars" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin stars", "emoticon", "eyes", "face", "grinning", "star", "star-struck", "starry-eyed" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinStars = 0xF587, + + /// + /// The Font Awesome "face-grin-tears" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin tears", "lol", "emoticon", "face", "face with tears of joy", "joy", "laugh", "tear" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinTears = 0xF588, + + /// + /// The Font Awesome "face-grin-tongue" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin tongue", "lol", "emoticon", "face", "face with tongue", "tongue" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinTongue = 0xF589, + + /// + /// The Font Awesome "face-grin-tongue-squint" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin tongue squint", "lol", "emoticon", "eye", "face", "horrible", "squinting face with tongue", "taste", "tongue" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinTongueSquint = 0xF58A, + + /// + /// The Font Awesome "face-grin-tongue-wink" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin tongue wink", "lol", "emoticon", "eye", "face", "joke", "tongue", "wink", "winking face with tongue" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinTongueWink = 0xF58B, + + /// + /// The Font Awesome "face-grin-wink" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face grin wink", "emoticon", "face", "flirt", "laugh", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + GrinWink = 0xF58C, + + /// + /// The Font Awesome "gripfire" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "gripfire" })] + Gripfire = 0xF3AC, + + /// + /// The Font Awesome "grip" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "grip", "affordance", "drag", "drop", "grab", "handle" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + GripHorizontal = 0xF58D, + + /// + /// The Font Awesome "grip-lines" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "grip lines", "affordance", "drag", "drop", "grab", "handle" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + GripLines = 0xF7A4, + + /// + /// The Font Awesome "grip-lines-vertical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "grip lines vertical", "affordance", "drag", "drop", "grab", "handle" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + GripLinesVertical = 0xF7A5, + + /// + /// The Font Awesome "grip-vertical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "grip vertical", "affordance", "drag", "drop", "grab", "handle" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + GripVertical = 0xF58E, + + /// + /// The Font Awesome "group-arrows-rotate" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "group arrows rotate", "community", "engagement", "spin", "sync" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Marketing" })] + GroupArrowsRotate = 0xE4F6, + + /// + /// The Font Awesome "grunt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "grunt" })] + Grunt = 0xF3AD, + + /// + /// The Font Awesome "guarani-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "guarani sign", "guarani sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + GuaraniSign = 0xE19A, + + /// + /// The Font Awesome "guitar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "guitar", "acoustic", "instrument", "music", "rock", "rock and roll", "song", "strings" })] + [FontAwesomeCategoriesAttribute(new[] { "Music + Audio" })] + Guitar = 0xF7A6, + + /// + /// The Font Awesome "gulp" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "gulp" })] + Gulp = 0xF3AE, + + /// + /// The Font Awesome "gun" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gun", "firearm", "pistol", "weapon" })] + [FontAwesomeCategoriesAttribute(new[] { "Security" })] + Gun = 0xE19B, + + /// + /// The Font Awesome "hacker-news" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "hacker news" })] + HackerNews = 0xF1D4, + + /// + /// The Font Awesome "square-hacker-news" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square hacker news" })] + HackerNewsSquare = 0xF3AF, + + /// + /// The Font Awesome "hackerrank" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "hackerrank" })] + Hackerrank = 0xF5F7, + + /// + /// The Font Awesome "burger" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bacon", "beef", "burger", "burger king", "cheeseburger", "fast food", "grill", "ground beef", "mcdonalds", "sandwich" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage" })] + Hamburger = 0xF805, + + /// + /// The Font Awesome "hammer" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "admin", "fix", "hammer", "recovery", "repair", "settings", "tool" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Humanitarian" })] + Hammer = 0xF6E3, + + /// + /// The Font Awesome "hamsa" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hamsa", "amulet", "christianity", "islam", "jewish", "judaism", "muslim", "protection" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Hamsa = 0xF665, + + /// + /// The Font Awesome "handcuffs" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrest", "criminal", "handcuffs", "jail", "lock", "police", "wrist" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security" })] + Handcuffs = 0xE4F8, + + /// + /// The Font Awesome "hand-holding" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand holding", "carry", "lift" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandHolding = 0xF4BD, + + /// + /// The Font Awesome "hand-holding-droplet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand holding droplet", "carry", "covid-19", "drought", "grow", "lift", "sanitation" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Hands" })] + HandHoldingDroplet = 0xF4C1, + + /// + /// The Font Awesome "hand-holding-hand" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand holding hand", "care", "give", "help", "hold", "protect" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Hands", "Humanitarian" })] + HandHoldingHand = 0xE4F7, + + /// + /// The Font Awesome "hand-holding-heart" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand holding heart", "carry", "charity", "gift", "lift", "package" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Hands" })] + HandHoldingHeart = 0xF4BE, + + /// + /// The Font Awesome "hand-holding-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand holding medical", "care", "covid-19", "donate", "help" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands", "Medical + Health" })] + HandHoldingMedical = 0xE05C, + + /// + /// The Font Awesome "hand-holding-dollar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand holding dollar", "$", "carry", "dollar sign", "donation", "giving", "lift", "money", "price" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Hands", "Money" })] + HandHoldingUsd = 0xF4C0, + + /// + /// The Font Awesome "hand-lizard" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand lizard", "game", "roshambo" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandLizard = 0xF258, + + /// + /// The Font Awesome "hand-middle-finger" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand middle finger", "finger", "flip the bird", "gesture", "hand", "hate", "middle finger", "rude" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandMiddleFinger = 0xF806, + + /// + /// The Font Awesome "hand" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand", "raised hand", "backhand", "game", "halt", "palm", "raised", "raised back of hand", "roshambo", "stop" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands", "Media Playback" })] + HandPaper = 0xF256, + + /// + /// The Font Awesome "hand-peace" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand peace", "hand", "rest", "truce", "v", "victory", "victory hand" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandPeace = 0xF25B, + + /// + /// The Font Awesome "hand-point-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand point down", "finger", "hand-o-down", "point" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandPointDown = 0xF0A7, + + /// + /// The Font Awesome "hand-pointer" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand pointer", "arrow", "cursor", "select" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandPointer = 0xF25A, + + /// + /// The Font Awesome "hand-point-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand point left", "back", "finger", "hand-o-left", "left", "point", "previous" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandPointLeft = 0xF0A5, + + /// + /// The Font Awesome "hand-point-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand point right", "finger", "forward", "hand-o-right", "next", "point", "right" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandPointRight = 0xF0A4, + + /// + /// The Font Awesome "hand-point-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand point up", "finger", "hand", "hand-o-up", "index", "index pointing up", "point", "up" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandPointUp = 0xF0A6, + + /// + /// The Font Awesome "hand-back-fist" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand back fist", "fist", "game", "roshambo" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandRock = 0xF255, + + /// + /// The Font Awesome "hands-holding" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hands holding", "carry", "hold", "lift" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + Hands = 0xF4C2, + + /// + /// The Font Awesome "hands-bound" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hands bound", "abduction", "bound", "handcuff", "wrist" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands", "Humanitarian", "Security" })] + HandsBound = 0xE4F9, + + /// + /// The Font Awesome "hands-bubbles" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hands bubbles", "covid-19", "hygiene", "soap", "wash" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands", "Humanitarian" })] + HandsBubbles = 0xE05E, + + /// + /// The Font Awesome "hand-scissors" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand scissors", "cut", "game", "roshambo" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandScissors = 0xF257, + + /// + /// The Font Awesome "hands-clapping" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hands clapping", "applause", "clap", "clapping hands", "hand" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandsClapping = 0xE1A8, + + /// + /// The Font Awesome "handshake" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "handshake", "agreement", "greeting", "meeting", "partnership" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Hands", "Political", "Shopping" })] + Handshake = 0xF2B5, + + /// + /// The Font Awesome "handshake-simple" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "handshake simple", "agreement", "greeting", "hand", "handshake", "meeting", "partnership", "shake" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Hands", "Humanitarian" })] + HandshakeSimple = 0xF4C6, + + /// + /// The Font Awesome "handshake-simple-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "handshake simple slash", "broken", "covid-19", "social distance" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandshakeSimpleSlash = 0xE05F, + + /// + /// The Font Awesome "handshake-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "handshake slash", "broken", "covid-19", "social distance" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandshakeSlash = 0xE060, + + /// + /// The Font Awesome "handshake-angle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "handshake angle", "aid", "assistance", "handshake", "partnership", "volunteering" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Charity", "Hands" })] + HandsHelping = 0xF4C4, + + /// + /// The Font Awesome "hands-holding-child" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hands holding child", "care", "give", "help", "hold", "protect" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Childhood", "Hands", "Humanitarian", "Security" })] + HandsHoldingChild = 0xE4FA, + + /// + /// The Font Awesome "hands-holding-circle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hands holding circle", "circle", "gift", "protection" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Hands", "Humanitarian", "Security" })] + HandsHoldingCircle = 0xE4FB, + + /// + /// The Font Awesome "hand-sparkles" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand sparkles", "clean", "covid-19", "hygiene", "magic", "palm", "soap", "wash" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands" })] + HandSparkles = 0xE05D, + + /// + /// The Font Awesome "hand-spock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hand spock", "finger", "hand", "live long", "palm", "prosper", "salute", "spock", "star trek", "vulcan", "vulcan salute" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands", "Science Fiction" })] + HandSpock = 0xF259, + + /// + /// The Font Awesome "hanukiah" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hanukiah", "candelabrum", "candle", "candlestick", "hanukkah", "jewish", "judaism", "light", "menorah", "religion" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Hanukiah = 0xF6E6, + + /// + /// The Font Awesome "helmet-safety" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "helmet safety", "construction", "hardhat", "helmet", "safety" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Logistics" })] + HardHat = 0xF807, + + /// + /// The Font Awesome "hashtag" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x23. + /// + [FontAwesomeSearchTerms(new[] { "hashtag", "number sign", "twitter", "instagram", "pound", "social media", "tag" })] + [FontAwesomeCategoriesAttribute(new[] { "Punctuation + Symbols", "Social" })] + Hashtag = 0xF292, + + /// + /// The Font Awesome "hat-cowboy" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hat cowboy", "buckaroo", "horse", "jackeroo", "john b.", "old west", "pardner", "ranch", "rancher", "rodeo", "western", "wrangler" })] + [FontAwesomeCategoriesAttribute(new[] { "Clothing + Fashion" })] + HatCowboy = 0xF8C0, + + /// + /// The Font Awesome "hat-cowboy-side" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hat cowboy side", "buckaroo", "horse", "jackeroo", "john b.", "old west", "pardner", "ranch", "rancher", "rodeo", "western", "wrangler" })] + [FontAwesomeCategoriesAttribute(new[] { "Clothing + Fashion" })] + HatCowboySide = 0xF8C1, + + /// + /// The Font Awesome "hat-wizard" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hat wizard", "dungeons & dragons", "accessory", "buckle", "clothing", "d&d", "dnd", "fantasy", "halloween", "head", "holiday", "mage", "magic", "pointy", "witch" })] + [FontAwesomeCategoriesAttribute(new[] { "Clothing + Fashion", "Gaming", "Halloween" })] + HatWizard = 0xF6E8, + + /// + /// The Font Awesome "hard-drive" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hard drive", "hard disk", "cpu", "hard drive", "harddrive", "machine", "save", "storage" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + Hdd = 0xF0A0, + + /// + /// The Font Awesome "heading" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "heading", "format", "header", "text", "title" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + Heading = 0xF1DC, + + /// + /// The Font Awesome "headphones" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "headphones", "audio", "earbud", "headphone", "listen", "music", "sound", "speaker" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware", "Film + Video", "Music + Audio" })] + Headphones = 0xF025, + + /// + /// The Font Awesome "headphones-simple" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "headphones simple", "audio", "listen", "music", "sound", "speaker" })] + [FontAwesomeCategoriesAttribute(new[] { "Music + Audio" })] + HeadphonesAlt = 0xF58F, + + /// + /// The Font Awesome "headset" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "headset", "audio", "gamer", "gaming", "listen", "live chat", "microphone", "shot caller", "sound", "support", "telemarketer" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming", "Humanitarian" })] + Headset = 0xF590, + + /// + /// The Font Awesome "head-side-cough" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "head side cough", "cough", "covid-19", "germs", "lungs", "respiratory", "sick" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Users + People" })] + HeadSideCough = 0xE061, + + /// + /// The Font Awesome "head-side-cough-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "head side cough slash", "cough", "covid-19", "germs", "lungs", "respiratory", "sick" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Users + People" })] + HeadSideCoughSlash = 0xE062, + + /// + /// The Font Awesome "head-side-mask" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "head side mask", "breath", "coronavirus", "covid-19", "filter", "flu", "infection", "pandemic", "respirator", "virus" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Users + People" })] + HeadSideMask = 0xE063, + + /// + /// The Font Awesome "head-side-virus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "head side virus", "cold", "coronavirus", "covid-19", "flu", "infection", "pandemic", "sick" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Users + People" })] + HeadSideVirus = 0xE064, + + /// + /// The Font Awesome "heart" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "black", "black heart", "blue", "blue heart", "brown", "brown heart", "card", "evil", "favorite", "game", "green", "green heart", "heart", "heart suit", "like", "love", "orange", "orange heart", "purple", "purple heart", "red heart", "relationship", "valentine", "white", "white heart", "wicked", "yellow", "yellow heart" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Gaming", "Holidays", "Maps", "Medical + Health", "Shapes", "Shopping", "Social", "Sports + Fitness" })] + Heart = 0xF004, + + /// + /// The Font Awesome "heart-pulse" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "heart pulse", "ekg", "electrocardiogram", "health", "lifeline", "vital signs" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Medical + Health", "Sports + Fitness" })] + Heartbeat = 0xF21E, + + /// + /// The Font Awesome "heart-crack" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "heart crack", "break", "breakup", "broken", "broken heart", "crushed", "dislike", "dumped", "grief", "love", "lovesick", "relationship", "sad" })] + [FontAwesomeCategoriesAttribute(new[] { "Shapes" })] + HeartBroken = 0xF7A9, + + /// + /// The Font Awesome "heart-circle-bolt" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "heart circle bolt", "cardiogram", "ekg", "electric", "heart", "love", "pacemaker" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + HeartCircleBolt = 0xE4FC, + + /// + /// The Font Awesome "heart-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "heart circle check", "favorite", "heart", "love", "not affected", "ok", "okay" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + HeartCircleCheck = 0xE4FD, + + /// + /// The Font Awesome "heart-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "heart circle exclamation", "favorite", "heart", "love" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + HeartCircleExclamation = 0xE4FE, + + /// + /// The Font Awesome "heart-circle-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "heart circle minus", "favorite", "heart", "love" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + HeartCircleMinus = 0xE4FF, + + /// + /// The Font Awesome "heart-circle-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "heart circle plus", "favorite", "heart", "love" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + HeartCirclePlus = 0xE500, + + /// + /// The Font Awesome "heart-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "heart circle xmark", "favorite", "heart", "love" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + HeartCircleXmark = 0xE501, + + /// + /// The Font Awesome "helicopter" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "airwolf", "apache", "chopper", "flight", "fly", "helicopter", "travel", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maps", "Transportation" })] + Helicopter = 0xF533, + + /// + /// The Font Awesome "helicopter-symbol" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "helicopter symbol", "chopper", "helicopter", "landing pad", "whirlybird" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maps" })] + HelicopterSymbol = 0xE502, + + /// + /// The Font Awesome "helmet-un" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "helmet un", "helmet", "united nations" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian" })] + HelmetUn = 0xE503, + + /// + /// The Font Awesome "highlighter" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "highlighter", "edit", "marker", "sharpie", "update", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Text Formatting" })] + Highlighter = 0xF591, + + /// + /// The Font Awesome "person-hiking" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person hiking", "autumn", "fall", "hike", "mountain", "outdoors", "summer", "walk" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Nature", "Sports + Fitness", "Users + People" })] + Hiking = 0xF6EC, + + /// + /// The Font Awesome "hill-avalanche" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hill avalanche", "mudslide", "snow", "winter" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian" })] + HillAvalanche = 0xE507, + + /// + /// The Font Awesome "hill-rockslide" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hill rockslide", "mudslide" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian" })] + HillRockslide = 0xE508, + + /// + /// The Font Awesome "hippo" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "animal", "fauna", "hippo", "hippopotamus", "hungry", "mammal" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals" })] + Hippo = 0xF6ED, + + /// + /// The Font Awesome "hips" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "hips" })] + Hips = 0xF452, + + /// + /// The Font Awesome "hire-a-helper" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "hire a helper" })] + HireAHelper = 0xF3B0, + + /// + /// The Font Awesome "clock-rotate-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "clock rotate left", "rewind", "clock", "reverse", "time", "time machine", "time travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Medical + Health" })] + History = 0xF1DA, + + /// + /// The Font Awesome "hockey-puck" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hockey puck", "ice", "nhl", "sport" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + HockeyPuck = 0xF453, + + /// + /// The Font Awesome "holly-berry" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "holly berry", "catwoman", "christmas", "decoration", "flora", "halle", "holiday", "ororo munroe", "plant", "storm", "xmas" })] + [FontAwesomeCategoriesAttribute(new[] { "Holidays" })] + HollyBerry = 0xF7AA, + + /// + /// The Font Awesome "house" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "abode", "building", "home", "house", "main", "residence" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Maps" })] + Home = 0xF015, + + /// + /// The Font Awesome "hooli" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "hooli" })] + Hooli = 0xF427, + + /// + /// The Font Awesome "hornbill" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "hornbill" })] + Hornbill = 0xF592, + + /// + /// The Font Awesome "horse" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "equestrian", "equus", "fauna", "horse", "mammmal", "mare", "neigh", "pony", "racehorse", "racing" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Transportation" })] + Horse = 0xF6F0, + + /// + /// The Font Awesome "horse-head" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "horse head", "equus", "fauna", "mammmal", "mare", "neigh", "pony" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals" })] + HorseHead = 0xF7AB, + + /// + /// The Font Awesome "hospital" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building", "covid-19", "doctor", "emergency room", "hospital", "medical center", "medicine" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Maps", "Medical + Health" })] + Hospital = 0xF0F8, + + /// + /// The Font Awesome "hospital" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF0F8. + /// + [FontAwesomeSearchTerms(new[] { "building", "covid-19", "doctor", "emergency room", "hospital", "medical center", "medicine" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Maps", "Medical + Health" })] + HospitalAlt = 0xF47D, + + /// + /// The Font Awesome "circle-h" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle h", "circled latin capital letter h", "clinic", "covid-19", "emergency", "letter", "map" })] + [FontAwesomeCategoriesAttribute(new[] { "Alphabet", "Humanitarian", "Medical + Health" })] + HospitalSymbol = 0xF47E, + + /// + /// The Font Awesome "hospital-user" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hospital user", "covid-19", "doctor", "network", "patient", "primary care" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Medical + Health", "Users + People" })] + HospitalUser = 0xF80D, + + /// + /// The Font Awesome "hotdog" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bun", "chili", "frankfurt", "frankfurter", "hot dog", "hotdog", "kosher", "polish", "sandwich", "sausage", "vienna", "weiner" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage" })] + Hotdog = 0xF80F, + + /// + /// The Font Awesome "hotel" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building", "hotel", "inn", "lodging", "motel", "resort", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Travel + Hotel" })] + Hotel = 0xF594, + + /// + /// The Font Awesome "hotjar" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "hotjar" })] + Hotjar = 0xF3B1, + + /// + /// The Font Awesome "hot-tub-person" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hot tub person", "jacuzzi", "spa" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel", "Users + People" })] + HotTub = 0xF593, + + /// + /// The Font Awesome "hourglass" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hour", "hourglass", "hourglass not done", "minute", "sand", "stopwatch", "time", "timer" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + Hourglass = 0xF254, + + /// + /// The Font Awesome "hourglass-end" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hourglass end", "hour", "hourglass done", "minute", "sand", "stopwatch", "time", "timer" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + HourglassEnd = 0xF253, + + /// + /// The Font Awesome "hourglass-half" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hourglass half", "hour", "minute", "sand", "stopwatch", "time" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + HourglassHalf = 0xF252, + + /// + /// The Font Awesome "hourglass-start" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hourglass start", "hour", "minute", "sand", "stopwatch", "time" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + HourglassStart = 0xF251, + + /// + /// The Font Awesome "house-chimney" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house chimney", "abode", "building", "chimney", "house", "main", "residence", "smokestack" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Moving" })] + HouseChimney = 0xE3AF, + + /// + /// The Font Awesome "house-chimney-user" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house chimney user", "covid-19", "home", "isolation", "quarantine" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Users + People" })] + HouseChimneyUser = 0xE065, + + /// + /// The Font Awesome "house-chimney-window" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house chimney window", "abode", "building", "family", "home", "residence" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Household" })] + HouseChimneyWindow = 0xE00D, + + /// + /// The Font Awesome "house-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house circle check", "abode", "home", "house", "not affected", "ok", "okay" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + HouseCircleCheck = 0xE509, + + /// + /// The Font Awesome "house-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house circle exclamation", "abode", "affected", "home", "house" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + HouseCircleExclamation = 0xE50A, + + /// + /// The Font Awesome "house-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house circle xmark", "abode", "destroy", "home", "house" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + HouseCircleXmark = 0xE50B, + + /// + /// The Font Awesome "house-crack" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house crack", "building", "devastation", "disaster", "earthquake", "home", "insurance" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Disaster + Crisis" })] + HouseCrack = 0xE3B1, + + /// + /// The Font Awesome "house-chimney-crack" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house chimney crack", "building", "devastation", "disaster", "earthquake", "home", "insurance" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Disaster + Crisis", "Humanitarian" })] + HouseDamage = 0xF6F1, + + /// + /// The Font Awesome "house-fire" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house fire", "burn", "emergency", "home" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Disaster + Crisis", "Household", "Humanitarian", "Security" })] + HouseFire = 0xE50C, + + /// + /// The Font Awesome "house-flag" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house flag", "camp", "home" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian" })] + HouseFlag = 0xE50D, + + /// + /// The Font Awesome "house-flood-water" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house flood water", "damage", "flood", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian" })] + HouseFloodWater = 0xE50E, + + /// + /// The Font Awesome "house-flood-water-circle-arrow-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house flood water circle arrow right", "damage", "flood", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian" })] + HouseFloodWaterCircleArrowRight = 0xE50F, + + /// + /// The Font Awesome "house-laptop" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house laptop", "computer", "covid-19", "device", "office", "remote", "work from home" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Devices + Hardware", "Household" })] + HouseLaptop = 0xE066, + + /// + /// The Font Awesome "house-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house lock", "closed", "home", "house", "lockdown", "quarantine" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Household", "Humanitarian", "Security" })] + HouseLock = 0xE510, + + /// + /// The Font Awesome "house-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house medical", "covid-19", "doctor", "facility", "general practitioner", "health", "hospital", "infirmary", "medicine", "office", "outpatient" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Medical + Health" })] + HouseMedical = 0xE3B2, + + /// + /// The Font Awesome "house-medical-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house medical circle check", "clinic", "hospital", "not affected", "ok", "okay" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Medical + Health" })] + HouseMedicalCircleCheck = 0xE511, + + /// + /// The Font Awesome "house-medical-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house medical circle exclamation", "affected", "clinic", "hospital" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Medical + Health" })] + HouseMedicalCircleExclamation = 0xE512, + + /// + /// The Font Awesome "house-medical-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house medical circle xmark", "clinic", "destroy", "hospital" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Medical + Health" })] + HouseMedicalCircleXmark = 0xE513, + + /// + /// The Font Awesome "house-medical-flag" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house medical flag", "clinic", "hospital", "mash" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Medical + Health" })] + HouseMedicalFlag = 0xE514, + + /// + /// The Font Awesome "house-signal" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house signal", "abode", "building", "connect", "family", "home", "residence", "smart home", "wifi" })] + [FontAwesomeCategoriesAttribute(new[] { "Connectivity", "Household", "Humanitarian" })] + HouseSignal = 0xE012, + + /// + /// The Font Awesome "house-tsunami" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house tsunami", "damage", "flood", "tidal wave", "wave" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Weather" })] + HouseTsunami = 0xE515, + + /// + /// The Font Awesome "house-user" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "house user", "house" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Users + People" })] + HouseUser = 0xE1B0, + + /// + /// The Font Awesome "houzz" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "houzz" })] + Houzz = 0xF27C, + + /// + /// The Font Awesome "hryvnia-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hryvnia sign", "hryvnia sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + Hryvnia = 0xF6F2, + + /// + /// The Font Awesome "square-h" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square h", "directions", "emergency", "hospital", "hotel", "letter", "map" })] + [FontAwesomeCategoriesAttribute(new[] { "Alphabet", "Maps", "Medical + Health" })] + HSquare = 0xF0FD, + + /// + /// The Font Awesome "html5" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "html5" })] + Html5 = 0xF13B, + + /// + /// The Font Awesome "hubspot" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "hubspot" })] + Hubspot = 0xF3B2, + + /// + /// The Font Awesome "hurricane" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hurricane", "coriolis effect", "eye", "storm", "tropical cyclone", "typhoon" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Spinners", "Weather" })] + Hurricane = 0xF751, + + /// + /// The Font Awesome "ice-cream" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ice cream", "chocolate", "cone", "cream", "dessert", "frozen", "ice", "ice cream", "scoop", "sorbet", "sweet", "vanilla", "yogurt" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Food + Beverage" })] + IceCream = 0xF810, + + /// + /// The Font Awesome "icicles" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "icicles", "cold", "frozen", "hanging", "ice", "seasonal", "sharp" })] + [FontAwesomeCategoriesAttribute(new[] { "Nature", "Weather" })] + Icicles = 0xF7AD, + + /// + /// The Font Awesome "icons" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "icons", "bolt", "emoji", "heart", "image", "music", "photo", "symbols" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Design", "Social", "Text Formatting" })] + Icons = 0xF86D, + + /// + /// The Font Awesome "i-cursor" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "i cursor", "editing", "i-beam", "type", "writing" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + ICursor = 0xF246, + + /// + /// The Font Awesome "id-badge" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "id badge", "address", "contact", "identification", "license", "profile" })] + [FontAwesomeCategoriesAttribute(new[] { "Photos + Images", "Security", "Users + People" })] + IdBadge = 0xF2C1, + + /// + /// The Font Awesome "id-card" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "id card", "contact", "demographics", "document", "identification", "issued", "profile", "registration" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Photos + Images", "Security", "Users + People" })] + IdCard = 0xF2C2, + + /// + /// The Font Awesome "id-card-clip" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "id card clip", "contact", "demographics", "document", "identification", "issued", "profile" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Security", "Users + People" })] + IdCardAlt = 0xF47F, + + /// + /// The Font Awesome "ideal" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ideal" })] + Ideal = 0xF913, + + /// + /// The Font Awesome "igloo" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "igloo", "dome", "dwelling", "eskimo", "home", "house", "ice", "snow" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings" })] + Igloo = 0xF7AE, + + /// + /// The Font Awesome "image" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "image", "album", "landscape", "photo", "picture" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Photos + Images", "Social" })] + Image = 0xF03E, + + /// + /// The Font Awesome "images" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "images", "album", "landscape", "photo", "picture" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Photos + Images", "Social" })] + Images = 0xF302, + + /// + /// The Font Awesome "imdb" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "imdb" })] + Imdb = 0xF2D8, + + /// + /// The Font Awesome "inbox" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "inbox", "archive", "desk", "email", "mail", "message" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication" })] + Inbox = 0xF01C, + + /// + /// The Font Awesome "indent" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "indent", "align", "justify", "paragraph", "tab" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + Indent = 0xF03C, + + /// + /// The Font Awesome "indian-rupee-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "indian rupee sign", "indian rupee sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + IndianRupeeSign = 0xE1BC, + + /// + /// The Font Awesome "industry" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "industry", "building", "factory", "industrial", "manufacturing", "mill", "warehouse" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Business", "Energy", "Maps" })] + Industry = 0xF275, + + /// + /// The Font Awesome "infinity" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "infinity", "eternity", "forever", "infinity", "math", "unbounded", "universal" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics", "Travel + Hotel" })] + Infinity = 0xF534, + + /// + /// The Font Awesome "info" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "info", "details", "help", "information", "more", "support" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + Info = 0xF129, + + /// + /// The Font Awesome "circle-info" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle info", "details", "help", "information", "more", "support" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Maps" })] + InfoCircle = 0xF05A, + + /// + /// The Font Awesome "instagram" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "instagram" })] + Instagram = 0xF16D, + + /// + /// The Font Awesome "square-instagram" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square instagram" })] + InstagramSquare = 0xF955, + + /// + /// The Font Awesome "intercom" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "intercom", "app", "customer", "messenger" })] + Intercom = 0xF7AF, + + /// + /// The Font Awesome "internet-explorer" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "internet explorer", "browser", "ie" })] + InternetExplorer = 0xF26B, + + /// + /// The Font Awesome "invision" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "invision", "app", "design", "interface" })] + Invision = 0xF7B0, + + /// + /// The Font Awesome "ioxhost" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ioxhost" })] + Ioxhost = 0xF208, + + /// + /// The Font Awesome "italic" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "italic", "edit", "emphasis", "font", "format", "text", "type" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + Italic = 0xF033, + + /// + /// The Font Awesome "itch-io" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "itch io" })] + ItchIo = 0xF83A, + + /// + /// The Font Awesome "itunes" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "itunes" })] + Itunes = 0xF3B4, + + /// + /// The Font Awesome "itunes-note" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "itunes note" })] + ItunesNote = 0xF3B5, + + /// + /// The Font Awesome "jar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "jar", "jam", "jelly", "storage" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Household", "Humanitarian" })] + Jar = 0xE516, + + /// + /// The Font Awesome "jar-wheat" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "jar wheat", "flour", "storage" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Household", "Humanitarian" })] + JarWheat = 0xE517, + + /// + /// The Font Awesome "java" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "java" })] + Java = 0xF4E4, + + /// + /// The Font Awesome "jedi" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "jedi", "crest", "force", "sith", "skywalker", "star wars", "yoda" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion", "Science Fiction" })] + Jedi = 0xF669, + + /// + /// The Font Awesome "jedi-order" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "jedi order", "star wars" })] + [FontAwesomeCategoriesAttribute(new[] { "Science Fiction" })] + JediOrder = 0xF50E, + + /// + /// The Font Awesome "jenkins" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "jenkins" })] + Jenkins = 0xF3B6, + + /// + /// The Font Awesome "jet-fighter-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "jet fighter up", "airforce", "airplane", "airport", "fast", "fly", "goose", "marines", "maverick", "military", "plane", "quick", "top gun", "transportation", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Transportation" })] + JetFighterUp = 0xE518, + + /// + /// The Font Awesome "jira" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "jira", "atlassian" })] + Jira = 0xF7B1, + + /// + /// The Font Awesome "joget" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "joget" })] + Joget = 0xF3B7, + + /// + /// The Font Awesome "joint" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "joint", "blunt", "cannabis", "doobie", "drugs", "marijuana", "roach", "smoke", "smoking", "spliff" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Joint = 0xF595, + + /// + /// The Font Awesome "joomla" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "joomla" })] + Joomla = 0xF1AA, + + /// + /// The Font Awesome "book-journal-whills" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book journal whills", "book", "force", "jedi", "sith", "star wars", "yoda" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion", "Science Fiction" })] + JournalWhills = 0xF66A, + + /// + /// The Font Awesome "js" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "js" })] + Js = 0xF3B8, + + /// + /// The Font Awesome "jsfiddle" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "jsfiddle" })] + Jsfiddle = 0xF1CC, + + /// + /// The Font Awesome "square-js" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square js" })] + JsSquare = 0xF3B9, + + /// + /// The Font Awesome "jug-detergent" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "jug detergent", "detergent", "laundry", "soap", "wash" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Humanitarian" })] + JugDetergent = 0xE519, + + /// + /// The Font Awesome "kaaba" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "muslim", "building", "cube", "islam", "kaaba", "muslim", "religion" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Religion" })] + Kaaba = 0xF66B, + + /// + /// The Font Awesome "kaggle" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "kaggle" })] + Kaggle = 0xF5FA, + + /// + /// The Font Awesome "key" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "key", "lock", "password", "private", "secret", "unlock" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Security", "Shopping", "Travel + Hotel" })] + Key = 0xF084, + + /// + /// The Font Awesome "keybase" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "keybase" })] + Keybase = 0xF4F5, + + /// + /// The Font Awesome "keyboard" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "accessory", "computer", "edit", "input", "keyboard", "text", "type", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Devices + Hardware", "Writing" })] + Keyboard = 0xF11C, + + /// + /// The Font Awesome "keycdn" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "keycdn" })] + Keycdn = 0xF3BA, + + /// + /// The Font Awesome "khanda" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "khanda", "adi shakti", "chakkar", "sikh", "sikhism", "sword" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Khanda = 0xF66D, + + /// + /// The Font Awesome "kickstarter" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "kickstarter" })] + Kickstarter = 0xF3BB, + + /// + /// The Font Awesome "kickstarter-k" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "kickstarter k" })] + KickstarterK = 0xF3BC, + + /// + /// The Font Awesome "kip-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "kip sign", "kip sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + KipSign = 0xE1C4, + + /// + /// The Font Awesome "face-kiss" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face kiss", "beso", "emoticon", "face", "kiss", "kissing face", "love", "smooch" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + Kiss = 0xF596, + + /// + /// The Font Awesome "face-kiss-beam" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face kiss beam", "beso", "emoticon", "eye", "face", "kiss", "kissing face with smiling eyes", "love", "smile", "smooch" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + KissBeam = 0xF597, + + /// + /// The Font Awesome "face-kiss-wink-heart" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face kiss wink heart", "beso", "emoticon", "face", "face blowing a kiss", "kiss", "love", "smooch" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji", "Holidays" })] + KissWinkHeart = 0xF598, + + /// + /// The Font Awesome "kitchen-set" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "kitchen set", "chef", "cook", "cup", "kitchen", "pan", "pot", "skillet" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Humanitarian", "Travel + Hotel" })] + KitchenSet = 0xE51A, + + /// + /// The Font Awesome "kiwi-bird" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "kiwi bird", "bird", "fauna", "new zealand" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals" })] + KiwiBird = 0xF535, + + /// + /// The Font Awesome "korvue" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "korvue" })] + Korvue = 0xF42F, + + /// + /// The Font Awesome "landmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "landmark", "building", "classical", "historic", "memorable", "monument", "museum", "politics" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Business", "Humanitarian", "Maps", "Money" })] + Landmark = 0xF66F, + + /// + /// The Font Awesome "landmark-dome" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "landmark dome", "building", "historic", "memorable", "monument", "politics" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Political" })] + LandmarkDome = 0xF752, + + /// + /// The Font Awesome "landmark-flag" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "landmark flag", "capitol", "flag", "landmark", "memorial" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Maps", "Political" })] + LandmarkFlag = 0xE51C, + + /// + /// The Font Awesome "land-mine-on" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "land mine on", "bomb", "danger", "explosion", "war" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security" })] + LandMineOn = 0xE51B, + + /// + /// The Font Awesome "language" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "language", "dialect", "idiom", "localize", "speech", "translate", "vernacular" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication" })] + Language = 0xF1AB, + + /// + /// The Font Awesome "laptop" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "computer", "cpu", "dell", "demo", "device", "laptop", "mac", "macbook", "machine", "pc", "personal" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware", "Humanitarian" })] + Laptop = 0xF109, + + /// + /// The Font Awesome "laptop-code" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "laptop code", "computer", "cpu", "dell", "demo", "develop", "device", "mac", "macbook", "machine", "pc" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Education" })] + LaptopCode = 0xF5FC, + + /// + /// The Font Awesome "laptop-file" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "laptop file", "computer", "education", "laptop", "learning", "remote work" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Devices + Hardware", "Education", "Humanitarian" })] + LaptopFile = 0xE51D, + + /// + /// The Font Awesome "laptop-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "laptop medical", "computer", "device", "ehr", "electronic health records", "history" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + LaptopMedical = 0xF812, + + /// + /// The Font Awesome "laravel" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "laravel" })] + Laravel = 0xF3BD, + + /// + /// The Font Awesome "lari-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "lari sign", "lari sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + LariSign = 0xE1C8, + + /// + /// The Font Awesome "lastfm" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "lastfm" })] + Lastfm = 0xF202, + + /// + /// The Font Awesome "square-lastfm" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square lastfm" })] + LastfmSquare = 0xF203, + + /// + /// The Font Awesome "face-laugh" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face laugh", "lol", "emoticon", "face", "laugh", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + Laugh = 0xF599, + + /// + /// The Font Awesome "face-laugh-beam" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face laugh beam", "lol", "beaming face with smiling eyes", "emoticon", "eye", "face", "grin", "happy", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + LaughBeam = 0xF59A, + + /// + /// The Font Awesome "face-laugh-squint" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face laugh squint", "lol", "emoticon", "face", "happy", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + LaughSquint = 0xF59B, + + /// + /// The Font Awesome "face-laugh-wink" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face laugh wink", "lol", "emoticon", "face", "happy", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + LaughWink = 0xF59C, + + /// + /// The Font Awesome "layer-group" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "layer group", "arrange", "develop", "layers", "map", "stack" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Maps" })] + LayerGroup = 0xF5FD, + + /// + /// The Font Awesome "leaf" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "leaf", "eco", "flora", "nature", "plant", "vegan" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Energy", "Fruits + Vegetables", "Maps", "Nature" })] + Leaf = 0xF06C, + + /// + /// The Font Awesome "leanpub" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "leanpub" })] + Leanpub = 0xF212, + + /// + /// The Font Awesome "lemon" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "citrus", "fruit", "lemon", "lemonade", "lime", "tart" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Fruits + Vegetables", "Maps" })] + Lemon = 0xF094, + + /// + /// The Font Awesome "less" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "less" })] + Less = 0xF41D, + + /// + /// The Font Awesome "less-than" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x3C. + /// + [FontAwesomeSearchTerms(new[] { "less than", "less-than sign", "arithmetic", "compare", "math" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics", "Punctuation + Symbols" })] + LessThan = 0xF536, + + /// + /// The Font Awesome "less-than-equal" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "less than equal", "arithmetic", "compare", "math" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + LessThanEqual = 0xF537, + + /// + /// The Font Awesome "turn-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "turn down", "arrow", "down", "level-down", "right arrow curving down" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + LevelDownAlt = 0xF3BE, + + /// + /// The Font Awesome "turn-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "turn up", "arrow", "level-up", "right arrow curving up" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + LevelUpAlt = 0xF3BF, + + /// + /// The Font Awesome "life-ring" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "life ring", "coast guard", "help", "overboard", "save", "support" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Maps", "Spinners" })] + LifeRing = 0xF1CD, + + /// + /// The Font Awesome "lightbulb" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "lightbulb", "bulb", "comic", "electric", "energy", "idea", "inspiration", "light", "light bulb" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Household", "Maps", "Marketing" })] + Lightbulb = 0xF0EB, + + /// + /// The Font Awesome "line" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "line" })] + Line = 0xF3C0, + + /// + /// The Font Awesome "lines-leaning" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "lines leaning", "canted", "domino", "falling", "resilience", "resilient", "tipped" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Humanitarian", "Shapes" })] + LinesLeaning = 0xE51E, + + /// + /// The Font Awesome "link" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "attach", "attachment", "chain", "connect", "lin", "link" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + Link = 0xF0C1, + + /// + /// The Font Awesome "linkedin" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "linkedin", "linkedin-square" })] + Linkedin = 0xF08C, + + /// + /// The Font Awesome "linkedin-in" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "linkedin in", "linkedin" })] + LinkedinIn = 0xF0E1, + + /// + /// The Font Awesome "linode" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "linode" })] + Linode = 0xF2B8, + + /// + /// The Font Awesome "linux" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "linux", "tux" })] + Linux = 0xF17C, + + /// + /// The Font Awesome "lira-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "lira sign", "lira sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + LiraSign = 0xF195, + + /// + /// The Font Awesome "list" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "list", "checklist", "completed", "done", "finished", "ol", "todo", "ul" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + List = 0xF03A, + + /// + /// The Font Awesome "rectangle-list" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "rectangle list", "checklist", "completed", "done", "finished", "ol", "todo", "ul" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + ListAlt = 0xF022, + + /// + /// The Font Awesome "list-ol" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "list ol", "checklist", "completed", "done", "finished", "numbers", "ol", "todo", "ul" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + ListOl = 0xF0CB, + + /// + /// The Font Awesome "list-ul" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "list ul", "checklist", "completed", "done", "finished", "ol", "todo", "ul" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + ListUl = 0xF0CA, + + /// + /// The Font Awesome "litecoin-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "litecoin sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + LitecoinSign = 0xE1D3, + + /// + /// The Font Awesome "location-arrow" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "location arrow", "address", "compass", "coordinate", "direction", "gps", "map", "navigation", "place" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Maps" })] + LocationArrow = 0xF124, + + /// + /// The Font Awesome "location-crosshairs" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "location crosshairs", "address", "coordinate", "direction", "gps", "location", "map", "navigation", "place", "where" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Toggle" })] + LocationCrosshairs = 0xF601, + + /// + /// The Font Awesome "location-pin-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "location pin lock", "closed", "lockdown", "map", "quarantine" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Maps" })] + LocationPinLock = 0xE51F, + + /// + /// The Font Awesome "lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "admin", "closed", "lock", "locked", "open", "password", "private", "protect", "security" })] + [FontAwesomeCategoriesAttribute(new[] { "Security" })] + Lock = 0xF023, + + /// + /// The Font Awesome "lock-open" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "lock open", "admin", "lock", "open", "password", "private", "protect", "security", "unlock" })] + [FontAwesomeCategoriesAttribute(new[] { "Security" })] + LockOpen = 0xF3C1, + + /// + /// The Font Awesome "locust" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "horde", "infestation", "locust", "plague", "swarm" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Disaster + Crisis", "Humanitarian", "Nature" })] + Locust = 0xE520, + + /// + /// The Font Awesome "down-long" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "down long", "download", "long-arrow-down" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + LongArrowAltDown = 0xF309, + + /// + /// The Font Awesome "left-long" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "left long", "back", "long-arrow-left", "previous" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + LongArrowAltLeft = 0xF30A, + + /// + /// The Font Awesome "right-long" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "right long", "forward", "long-arrow-right", "next" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + LongArrowAltRight = 0xF30B, + + /// + /// The Font Awesome "up-long" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "up long", "long-arrow-up", "upload" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + LongArrowAltUp = 0xF30C, + + /// + /// The Font Awesome "eye-low-vision" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "eye low vision", "blind", "eye", "sight" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Maps" })] + LowVision = 0xF2A8, + + /// + /// The Font Awesome "cart-flatbed-suitcase" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cart flatbed suitcase", "airport", "bag", "baggage", "suitcase", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + LuggageCart = 0xF59D, + + /// + /// The Font Awesome "lungs" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "air", "breath", "covid-19", "exhalation", "inhalation", "lungs", "organ", "respiration", "respiratory" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + Lungs = 0xF604, + + /// + /// The Font Awesome "lungs-virus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "lungs virus", "breath", "coronavirus", "covid-19", "flu", "infection", "pandemic", "respiratory", "sick" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + LungsVirus = 0xE067, + + /// + /// The Font Awesome "lyft" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "lyft" })] + Lyft = 0xF3C3, + + /// + /// The Font Awesome "magento" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "magento" })] + Magento = 0xF3C4, + + /// + /// The Font Awesome "wand-magic" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wand magic", "autocomplete", "automatic", "mage", "magic", "spell", "wand", "witch", "wizard" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Editing" })] + Magic = 0xF0D0, + + /// + /// The Font Awesome "magnet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "attract", "attraction", "horseshoe", "lodestone", "magnet", "magnetic", "tool" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Science" })] + Magnet = 0xF076, + + /// + /// The Font Awesome "magnifying-glass-arrow-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "magnifying glass arrow right", "find", "next", "search" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Humanitarian", "Marketing" })] + MagnifyingGlassArrowRight = 0xE521, + + /// + /// The Font Awesome "magnifying-glass-chart" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "magnifying glass chart", "analysis", "chart" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Humanitarian", "Marketing" })] + MagnifyingGlassChart = 0xE522, + + /// + /// The Font Awesome "envelopes-bulk" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "envelopes bulk", "archive", "envelope", "letter", "post office", "postal", "postcard", "send", "stamp", "usps" })] + [FontAwesomeCategoriesAttribute(new[] { "Marketing" })] + MailBulk = 0xF674, + + /// + /// The Font Awesome "mailchimp" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "mailchimp" })] + Mailchimp = 0xF59E, + + /// + /// The Font Awesome "person" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person", "man", "person standing", "stand", "standing", "woman" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Maps", "Users + People" })] + Male = 0xF183, + + /// + /// The Font Awesome "manat-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "manat sign", "manat sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + ManatSign = 0xE1D5, + + /// + /// The Font Awesome "mandalorian" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "mandalorian" })] + Mandalorian = 0xF50F, + + /// + /// The Font Awesome "map" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "address", "coordinates", "destination", "gps", "localize", "location", "map", "navigation", "paper", "pin", "place", "point of interest", "position", "route", "travel", "world", "world map" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Maps", "Travel + Hotel" })] + Map = 0xF279, + + /// + /// The Font Awesome "map-location" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "map location", "address", "coordinates", "destination", "gps", "localize", "location", "map", "navigation", "paper", "pin", "place", "point of interest", "position", "route", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Travel + Hotel" })] + MapMarked = 0xF59F, + + /// + /// The Font Awesome "map-location-dot" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "map location dot", "address", "coordinates", "destination", "gps", "localize", "location", "map", "navigation", "paper", "pin", "place", "point of interest", "position", "route", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Travel + Hotel" })] + MapMarkedAlt = 0xF5A0, + + /// + /// The Font Awesome "location-pin" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "location pin", "address", "coordinates", "destination", "gps", "localize", "location", "map", "navigation", "paper", "pin", "place", "point of interest", "position", "route", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Shapes", "Social" })] + MapMarker = 0xF041, + + /// + /// The Font Awesome "location-dot" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "location dot", "address", "coordinates", "destination", "gps", "localize", "location", "map", "navigation", "paper", "pin", "place", "point of interest", "position", "route", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Social" })] + MapMarkerAlt = 0xF3C5, + + /// + /// The Font Awesome "map-pin" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "map pin", "address", "agree", "coordinates", "destination", "gps", "localize", "location", "map", "marker", "navigation", "pin", "place", "position", "pushpin", "round pushpin", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + MapPin = 0xF276, + + /// + /// The Font Awesome "signs-post" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "signs post", "directions", "directory", "map", "signage", "wayfinding" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Maps", "Nature" })] + MapSigns = 0xF277, + + /// + /// The Font Awesome "markdown" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "markdown" })] + Markdown = 0xF60F, + + /// + /// The Font Awesome "marker" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "marker", "design", "edit", "sharpie", "update", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design" })] + Marker = 0xF5A1, + + /// + /// The Font Awesome "mars" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mars", "gender", "male", "male sign", "man" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + Mars = 0xF222, + + /// + /// The Font Awesome "mars-and-venus-burst" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mars and venus burst", "gender", "violence" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + MarsAndVenusBurst = 0xE523, + + /// + /// The Font Awesome "mars-double" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mars double", "doubled male sign", "gay", "gender", "male", "men" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + MarsDouble = 0xF227, + + /// + /// The Font Awesome "mars-stroke" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mars stroke", "male with stroke sign", "gender", "transgender" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + MarsStroke = 0xF229, + + /// + /// The Font Awesome "mars-stroke-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mars stroke right", "horizontal male with stroke sign", "gender" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + MarsStrokeH = 0xF22B, + + /// + /// The Font Awesome "mars-stroke-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mars stroke up", "vertical male with stroke sign", "gender" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + MarsStrokeV = 0xF22A, + + /// + /// The Font Awesome "mask" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mask", "carnivale", "costume", "disguise", "halloween", "secret", "super hero" })] + [FontAwesomeCategoriesAttribute(new[] { "Halloween", "Security" })] + Mask = 0xF6FA, + + /// + /// The Font Awesome "mask-face" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mask face", "breath", "coronavirus", "covid-19", "filter", "flu", "infection", "pandemic", "respirator", "virus" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + MaskFace = 0xE1D7, + + /// + /// The Font Awesome "mask-ventilator" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mask ventilator", "breath", "gas", "mask", "oxygen", "respirator", "ventilator" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + MaskVentilator = 0xE524, + + /// + /// The Font Awesome "mastodon" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "mastodon" })] + Mastodon = 0xF4F6, + + /// + /// The Font Awesome "mattress-pillow" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mattress pillow", "air mattress", "mattress", "pillow", "rest", "sleep" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Household", "Humanitarian" })] + MattressPillow = 0xE525, + + /// + /// The Font Awesome "maxcdn" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "maxcdn" })] + Maxcdn = 0xF136, + + /// + /// The Font Awesome "mdb" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "mdb" })] + Mdb = 0xF8CA, + + /// + /// The Font Awesome "medal" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "award", "medal", "ribbon", "sports medal", "star", "trophy" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + Medal = 0xF5A2, + + /// + /// The Font Awesome "medapps" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "medapps" })] + Medapps = 0xF3C6, + + /// + /// The Font Awesome "medium" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "medium" })] + Medium = 0xF23A, + + /// + /// The Font Awesome "medium" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF23A. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "medium" })] + MediumM = 0xF3C7, + + /// + /// The Font Awesome "suitcase-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "suitcase medical", "first aid", "firstaid", "health", "help", "medical", "supply", "support" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Maps", "Medical + Health" })] + Medkit = 0xF0FA, + + /// + /// The Font Awesome "medrt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "medrt" })] + Medrt = 0xF3C8, + + /// + /// The Font Awesome "meetup" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "meetup" })] + Meetup = 0xF2E0, + + /// + /// The Font Awesome "megaport" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "megaport" })] + Megaport = 0xF5A3, + + /// + /// The Font Awesome "face-meh" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face meh", "deadpan", "emoticon", "face", "meh", "neutral", "neutral face", "rating" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Emoji", "Users + People" })] + Meh = 0xF11A, + + /// + /// The Font Awesome "face-meh-blank" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face meh blank", "emoticon", "face", "face without mouth", "mouth", "neutral", "quiet", "rating", "silent" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + MehBlank = 0xF5A4, + + /// + /// The Font Awesome "face-rolling-eyes" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face rolling eyes", "emoticon", "eyeroll", "eyes", "face", "face with rolling eyes", "neutral", "rating", "rolling" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + MehRollingEyes = 0xF5A5, + + /// + /// The Font Awesome "memory" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "memory", "dimm", "ram", "hardware", "storage", "technology" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + Memory = 0xF538, + + /// + /// The Font Awesome "mendeley" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "mendeley" })] + Mendeley = 0xF7B3, + + /// + /// The Font Awesome "menorah" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "menorah", "candle", "hanukkah", "jewish", "judaism", "light" })] + [FontAwesomeCategoriesAttribute(new[] { "Holidays", "Religion" })] + Menorah = 0xF676, + + /// + /// The Font Awesome "mercury" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mercury", "mercury", "gender", "hybrid", "transgender" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + Mercury = 0xF223, + + /// + /// The Font Awesome "meteor" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "meteor", "armageddon", "asteroid", "comet", "shooting star", "space" })] + [FontAwesomeCategoriesAttribute(new[] { "Astronomy", "Weather" })] + Meteor = 0xF753, + + /// + /// The Font Awesome "microblog" icon unicode character. + /// + [Obsolete] + Microblog = 0xF91A, + + /// + /// The Font Awesome "microchip" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "microchip", "cpu", "hardware", "processor", "technology" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Devices + Hardware" })] + Microchip = 0xF2DB, + + /// + /// The Font Awesome "microphone" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "microphone", "address", "audio", "information", "podcast", "public", "record", "sing", "sound", "voice" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Film + Video", "Music + Audio", "Toggle" })] + Microphone = 0xF130, + + /// + /// The Font Awesome "microphone-lines" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "microphone lines", "audio", "mic", "microphone", "music", "podcast", "record", "sing", "sound", "studio", "studio microphone", "voice" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Film + Video", "Music + Audio" })] + MicrophoneAlt = 0xF3C9, + + /// + /// The Font Awesome "microphone-lines-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "microphone lines slash", "audio", "disable", "mute", "podcast", "record", "sing", "sound", "voice" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Film + Video", "Music + Audio" })] + MicrophoneAltSlash = 0xF539, + + /// + /// The Font Awesome "microphone-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "microphone slash", "audio", "disable", "mute", "podcast", "record", "sing", "sound", "voice" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Film + Video", "Music + Audio", "Toggle" })] + MicrophoneSlash = 0xF131, + + /// + /// The Font Awesome "microscope" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "covid-19", "electron", "lens", "microscope", "optics", "science", "shrink", "testing", "tool" })] + [FontAwesomeCategoriesAttribute(new[] { "Education", "Humanitarian", "Medical + Health", "Science" })] + Microscope = 0xF610, + + /// + /// The Font Awesome "microsoft" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "microsoft" })] + Microsoft = 0xF3CA, + + /// + /// The Font Awesome "mill-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mill sign", "mill sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + MillSign = 0xE1ED, + + /// + /// The Font Awesome "minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "en dash", "minus sign", "collapse", "delete", "hide", "math", "minify", "minus", "negative", "remove", "sign", "trash", "−" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing", "Mathematics", "Punctuation + Symbols" })] + Minus = 0xF068, + + /// + /// The Font Awesome "circle-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle minus", "delete", "hide", "negative", "remove", "shape", "trash" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + MinusCircle = 0xF056, + + /// + /// The Font Awesome "square-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square minus", "collapse", "delete", "hide", "minify", "negative", "remove", "shape", "trash" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + MinusSquare = 0xF146, + + /// + /// The Font Awesome "mitten" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mitten", "clothing", "cold", "glove", "hands", "knitted", "seasonal", "warmth" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Clothing + Fashion" })] + Mitten = 0xF7B5, + + /// + /// The Font Awesome "mix" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "mix" })] + Mix = 0xF3CB, + + /// + /// The Font Awesome "mixcloud" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "mixcloud" })] + Mixcloud = 0xF289, + + /// + /// The Font Awesome "mixer" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "mixer" })] + Mixer = 0xF956, + + /// + /// The Font Awesome "mizuni" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "mizuni" })] + Mizuni = 0xF3CC, + + /// + /// The Font Awesome "mobile" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "android", "call", "cell", "cell phone", "device", "mobile", "mobile phone", "number", "phone", "screen", "telephone", "text" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Devices + Hardware" })] + Mobile = 0xF3CE, + + /// + /// The Font Awesome "mobile-screen-button" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mobile screen button", "apple", "call", "cell phone", "device", "iphone", "number", "screen", "telephone" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Devices + Hardware" })] + MobileAlt = 0xF3CD, + + /// + /// The Font Awesome "mobile-button" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mobile button", "apple", "call", "cell phone", "device", "iphone", "number", "screen", "telephone" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Devices + Hardware" })] + MobileButton = 0xF10B, + + /// + /// The Font Awesome "mobile-retro" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mobile retro", "cellphone", "cellular", "phone" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Devices + Hardware", "Humanitarian" })] + MobileRetro = 0xE527, + + /// + /// The Font Awesome "mobile-screen" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mobile screen", "android", "call", "cell phone", "device", "number", "screen", "telephone", "text" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Devices + Hardware", "Humanitarian" })] + MobileScreen = 0xF3CF, + + /// + /// The Font Awesome "modx" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "modx" })] + Modx = 0xF285, + + /// + /// The Font Awesome "monero" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "monero" })] + Monero = 0xF3D0, + + /// + /// The Font Awesome "money-bill" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "money bill", "buy", "cash", "checkout", "money", "payment", "price", "purchase" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Money" })] + MoneyBill = 0xF0D6, + + /// + /// The Font Awesome "money-bill-1" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "money bill 1", "buy", "cash", "checkout", "money", "payment", "price", "purchase" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Money" })] + MoneyBillAlt = 0xF3D1, + + /// + /// The Font Awesome "money-bills" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "money bills", "atm", "cash", "money", "moolah" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Money" })] + MoneyBills = 0xE1F3, + + /// + /// The Font Awesome "money-bill-transfer" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "money bill transfer", "bank", "conversion", "deposit", "money", "transfer", "withdrawal" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Money" })] + MoneyBillTransfer = 0xE528, + + /// + /// The Font Awesome "money-bill-trend-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "money bill trend up", "bank", "bonds", "inflation", "market", "stocks", "trade" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Money" })] + MoneyBillTrendUp = 0xE529, + + /// + /// The Font Awesome "money-bill-wave" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "money bill wave", "buy", "cash", "checkout", "money", "payment", "price", "purchase" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + MoneyBillWave = 0xF53A, + + /// + /// The Font Awesome "money-bill-1-wave" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "money bill 1 wave", "buy", "cash", "checkout", "money", "payment", "price", "purchase" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + MoneyBillWaveAlt = 0xF53B, + + /// + /// The Font Awesome "money-bill-wheat" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "money bill wheat", "agribusiness", "agriculture", "farming", "food", "livelihood", "subsidy" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Money" })] + MoneyBillWheat = 0xE52A, + + /// + /// The Font Awesome "money-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "money check", "bank check", "buy", "checkout", "cheque", "money", "payment", "price", "purchase" })] + [FontAwesomeCategoriesAttribute(new[] { "Money", "Shopping" })] + MoneyCheck = 0xF53C, + + /// + /// The Font Awesome "money-check-dollar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "money check dollar", "bank check", "buy", "checkout", "cheque", "money", "payment", "price", "purchase" })] + [FontAwesomeCategoriesAttribute(new[] { "Money", "Shopping" })] + MoneyCheckAlt = 0xF53D, + + /// + /// The Font Awesome "monument" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "monument", "building", "historic", "landmark", "memorable" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Travel + Hotel" })] + Monument = 0xF5A6, + + /// + /// The Font Awesome "moon" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "power sleep symbol", "contrast", "crescent", "crescent moon", "dark", "lunar", "moon", "night" })] + [FontAwesomeCategoriesAttribute(new[] { "Astronomy", "Weather" })] + Moon = 0xF186, + + /// + /// The Font Awesome "mortar-pestle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mortar pestle", "crush", "culinary", "grind", "medical", "mix", "pharmacy", "prescription", "spices" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Science" })] + MortarPestle = 0xF5A7, + + /// + /// The Font Awesome "mosque" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "muslim", "building", "islam", "landmark", "mosque", "muslim", "religion" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Religion" })] + Mosque = 0xF678, + + /// + /// The Font Awesome "mosquito" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bite", "bug", "mosquito", "west nile" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Camping", "Disaster + Crisis", "Humanitarian", "Nature" })] + Mosquito = 0xE52B, + + /// + /// The Font Awesome "mosquito-net" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mosquito net", "bite", "malaria", "mosquito", "net" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Humanitarian" })] + MosquitoNet = 0xE52C, + + /// + /// The Font Awesome "motorcycle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bike", "machine", "motorcycle", "racing", "transportation", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Maps", "Transportation" })] + Motorcycle = 0xF21C, + + /// + /// The Font Awesome "mound" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mound", "barrier", "hill", "pitcher", "speedbump" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Humanitarian", "Nature", "Sports + Fitness", "Transportation" })] + Mound = 0xE52D, + + /// + /// The Font Awesome "mountain" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cold", "glacier", "hiking", "hill", "landscape", "mountain", "snow", "snow-capped mountain", "travel", "view" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Nature" })] + Mountain = 0xF6FC, + + /// + /// The Font Awesome "mountain-city" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mountain city", "location", "rural", "urban" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Nature", "Travel + Hotel" })] + MountainCity = 0xE52E, + + /// + /// The Font Awesome "mountain-sun" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mountain sun", "country", "hiking", "landscape", "rural", "travel", "view" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Humanitarian", "Maps", "Nature" })] + MountainSun = 0xE52F, + + /// + /// The Font Awesome "computer-mouse" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "computer mouse", "click", "computer", "computer mouse", "cursor", "input", "peripheral" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + Mouse = 0xF8CC, + + /// + /// The Font Awesome "arrow-pointer" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow pointer", "arrow", "cursor", "select" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + MousePointer = 0xF245, + + /// + /// The Font Awesome "mug-hot" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mug hot", "beverage", "caliente", "cocoa", "coffee", "cup", "drink", "holiday", "hot", "hot beverage", "hot chocolate", "steam", "steaming", "tea", "warmth" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Holidays" })] + MugHot = 0xF7B6, + + /// + /// The Font Awesome "music" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "lyrics", "melody", "music", "musical note", "note", "sing", "sound" })] + [FontAwesomeCategoriesAttribute(new[] { "Education", "Maps", "Media Playback", "Music + Audio" })] + Music = 0xF001, + + /// + /// The Font Awesome "naira-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "naira sign", "naira sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + NairaSign = 0xE1F6, + + /// + /// The Font Awesome "napster" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "napster" })] + [FontAwesomeCategoriesAttribute(new[] { "Music + Audio" })] + Napster = 0xF3D2, + + /// + /// The Font Awesome "neos" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "neos" })] + Neos = 0xF612, + + /// + /// The Font Awesome "network-wired" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "network wired", "computer", "connect", "ethernet", "internet", "intranet" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Coding" })] + NetworkWired = 0xF6FF, + + /// + /// The Font Awesome "neuter" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "neuter", "neuter", "gender" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + Neuter = 0xF22C, + + /// + /// The Font Awesome "newspaper" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "article", "editorial", "headline", "journal", "journalism", "news", "newspaper", "paper", "press" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Writing" })] + Newspaper = 0xF1EA, + + /// + /// The Font Awesome "nimblr" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "nimblr" })] + Nimblr = 0xF5A8, + + /// + /// The Font Awesome "node" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "node" })] + Node = 0xF419, + + /// + /// The Font Awesome "node-js" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "node js" })] + NodeJs = 0xF3D3, + + /// + /// The Font Awesome "notdef" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "notdef", "close", "missing" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Writing" })] + Notdef = 0xE1FE, + + /// + /// The Font Awesome "not-equal" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "not equal", "arithmetic", "compare", "math" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + NotEqual = 0xF53E, + + /// + /// The Font Awesome "notes-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "notes medical", "clipboard", "doctor", "ehr", "health", "history", "records" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + NotesMedical = 0xF481, + + /// + /// The Font Awesome "npm" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "npm" })] + Npm = 0xF3D4, + + /// + /// The Font Awesome "ns8" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ns8" })] + Ns8 = 0xF3D5, + + /// + /// The Font Awesome "nutritionix" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "nutritionix" })] + Nutritionix = 0xF3D6, + + /// + /// The Font Awesome "object-group" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "object group", "combine", "copy", "design", "merge", "select" })] + [FontAwesomeCategoriesAttribute(new[] { "Design" })] + ObjectGroup = 0xF247, + + /// + /// The Font Awesome "object-ungroup" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "object ungroup", "copy", "design", "merge", "select", "separate" })] + [FontAwesomeCategoriesAttribute(new[] { "Design" })] + ObjectUngroup = 0xF248, + + /// + /// The Font Awesome "odnoklassniki" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "odnoklassniki" })] + Odnoklassniki = 0xF263, + + /// + /// The Font Awesome "square-odnoklassniki" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square odnoklassniki" })] + OdnoklassnikiSquare = 0xF264, + + /// + /// The Font Awesome "oil-can" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "oil can", "auto", "crude", "gasoline", "grease", "lubricate", "petroleum" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive" })] + OilCan = 0xF613, + + /// + /// The Font Awesome "oil-well" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "oil well", "drill", "oil", "rig" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Energy", "Humanitarian" })] + OilWell = 0xE532, + + /// + /// The Font Awesome "old-republic" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "old republic", "politics", "star wars" })] + [FontAwesomeCategoriesAttribute(new[] { "Science Fiction" })] + OldRepublic = 0xF510, + + /// + /// The Font Awesome "om" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hindu", "buddhism", "hinduism", "jainism", "mantra", "om", "religion" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Om = 0xF679, + + /// + /// The Font Awesome "opencart" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "opencart" })] + Opencart = 0xF23D, + + /// + /// The Font Awesome "openid" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "openid" })] + Openid = 0xF19B, + + /// + /// The Font Awesome "opera" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "opera" })] + Opera = 0xF26A, + + /// + /// The Font Awesome "optin-monster" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "optin monster" })] + OptinMonster = 0xF23C, + + /// + /// The Font Awesome "orcid" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "orcid" })] + Orcid = 0xF8D2, + + /// + /// The Font Awesome "osi" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "osi" })] + Osi = 0xF41A, + + /// + /// The Font Awesome "otter" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "animal", "badger", "fauna", "fishing", "fur", "mammal", "marten", "otter", "playful" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Maritime" })] + Otter = 0xF700, + + /// + /// The Font Awesome "outdent" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "outdent", "align", "justify", "paragraph", "tab" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + Outdent = 0xF03B, + + /// + /// The Font Awesome "page4" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "page4" })] + Page4 = 0xF3D7, + + /// + /// The Font Awesome "pagelines" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "pagelines", "eco", "flora", "leaf", "leaves", "nature", "plant", "tree" })] + Pagelines = 0xF18C, + + /// + /// The Font Awesome "pager" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "beeper", "cell phone", "communication", "page", "pager" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Pager = 0xF815, + + /// + /// The Font Awesome "paintbrush" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "acrylic", "art", "brush", "color", "fill", "paint", "paintbrush", "painting", "pigment", "watercolor" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Editing" })] + PaintBrush = 0xF1FC, + + /// + /// The Font Awesome "paint-roller" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "paint roller", "acrylic", "art", "brush", "color", "fill", "paint", "pigment", "watercolor" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Design" })] + PaintRoller = 0xF5AA, + + /// + /// The Font Awesome "palette" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "acrylic", "art", "artist palette", "brush", "color", "fill", "museum", "paint", "painting", "palette", "pigment", "watercolor" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Spinners" })] + Palette = 0xF53F, + + /// + /// The Font Awesome "palfed" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "palfed" })] + Palfed = 0xF3D8, + + /// + /// The Font Awesome "pallet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pallet", "archive", "box", "inventory", "shipping", "warehouse" })] + [FontAwesomeCategoriesAttribute(new[] { "Logistics" })] + Pallet = 0xF482, + + /// + /// The Font Awesome "panorama" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "panorama", "image", "landscape", "photo", "wide" })] + [FontAwesomeCategoriesAttribute(new[] { "Photos + Images" })] + Panorama = 0xE209, + + /// + /// The Font Awesome "paperclip" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "attach", "attachment", "connect", "link", "papercli", "paperclip" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Writing" })] + Paperclip = 0xF0C6, + + /// + /// The Font Awesome "paper-plane" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "paper plane", "air", "float", "fold", "mail", "paper", "send" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Transportation", "Writing" })] + PaperPlane = 0xF1D8, + + /// + /// The Font Awesome "parachute-box" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "parachute box", "aid", "assistance", "goods", "relief", "rescue", "supplies" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Humanitarian" })] + ParachuteBox = 0xF4CD, + + /// + /// The Font Awesome "paragraph" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "paragraph", "pilcrow sign", "edit", "format", "text", "writing" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting", "Writing" })] + Paragraph = 0xF1DD, + + /// + /// The Font Awesome "square-parking" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square parking", "auto", "car", "garage", "meter", "parking" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + Parking = 0xF540, + + /// + /// The Font Awesome "passport" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "passport", "document", "id", "identification", "issued", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Security", "Travel + Hotel" })] + Passport = 0xF5AB, + + /// + /// The Font Awesome "spaghetti-monster-flying" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "spaghetti monster flying", "agnosticism", "atheism", "flying spaghetti monster", "fsm" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Pastafarianism = 0xF67B, + + /// + /// The Font Awesome "paste" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "paste", "clipboard", "copy", "document", "paper" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Files" })] + Paste = 0xF0EA, + + /// + /// The Font Awesome "patreon" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "patreon" })] + Patreon = 0xF3D9, + + /// + /// The Font Awesome "pause" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bar", "double", "hold", "pause", "pause button", "vertical", "wait" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + Pause = 0xF04C, + + /// + /// The Font Awesome "circle-pause" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle pause", "hold", "wait" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + PauseCircle = 0xF28B, + + /// + /// The Font Awesome "paw" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "paw", "animal", "cat", "dog", "pet", "print" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Maps" })] + Paw = 0xF1B0, + + /// + /// The Font Awesome "paypal" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "paypal" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + Paypal = 0xF1ED, + + /// + /// The Font Awesome "peace" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "peace", "peace symbol", "serenity", "tranquility", "truce", "war" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Peace = 0xF67C, + + /// + /// The Font Awesome "pen" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ballpoint", "design", "edit", "pen", "update", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Editing", "Writing" })] + Pen = 0xF304, + + /// + /// The Font Awesome "pen-clip" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pen clip", "design", "edit", "update", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Editing", "Writing" })] + PenAlt = 0xF305, + + /// + /// The Font Awesome "pencil" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "lower left pencil", "design", "draw", "edit", "lead", "pencil", "update", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Construction", "Design", "Editing", "Writing" })] + PencilAlt = 0xF303, + + /// + /// The Font Awesome "pen-ruler" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pen ruler", "design", "draft", "draw", "pencil" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Design", "Editing" })] + PencilRuler = 0xF5AE, + + /// + /// The Font Awesome "pen-fancy" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pen fancy", "black nib", "design", "edit", "fountain", "fountain pen", "nib", "pen", "update", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Editing" })] + PenFancy = 0xF5AC, + + /// + /// The Font Awesome "pen-nib" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pen nib", "design", "edit", "fountain pen", "update", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Editing" })] + PenNib = 0xF5AD, + + /// + /// The Font Awesome "pennyarcade" icon unicode character. + /// + [Obsolete] + PennyArcade = 0xF704, + + /// + /// The Font Awesome "square-pen" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square pen", "edit", "pencil-square", "update", "write" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Editing", "Writing" })] + PenSquare = 0xF14B, + + /// + /// The Font Awesome "people-arrows" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "people arrows", "distance", "isolation", "separate", "social distancing", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PeopleArrows = 0xE068, + + /// + /// The Font Awesome "people-carry-box" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "people carry box", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Moving", "Users + People" })] + PeopleCarry = 0xF4CE, + + /// + /// The Font Awesome "people-group" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "people group", "family", "group", "team" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Marketing", "Users + People" })] + PeopleGroup = 0xE533, + + /// + /// The Font Awesome "people-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "people line", "group", "need" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PeopleLine = 0xE534, + + /// + /// The Font Awesome "people-pulling" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "people pulling", "forced return", "yanking" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + PeoplePulling = 0xE535, + + /// + /// The Font Awesome "people-robbery" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "people robbery", "criminal", "hands up", "looting", "robbery", "steal" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + PeopleRobbery = 0xE536, + + /// + /// The Font Awesome "people-roof" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "people roof", "family", "group", "manage", "people", "safe", "shelter" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Household", "Humanitarian", "Users + People" })] + PeopleRoof = 0xE537, + + /// + /// The Font Awesome "pepper-hot" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pepper hot", "buffalo wings", "capsicum", "chili", "chilli", "habanero", "hot", "hot pepper", "jalapeno", "mexican", "pepper", "spicy", "tabasco", "vegetable" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Fruits + Vegetables" })] + PepperHot = 0xF816, + + /// + /// The Font Awesome "percent" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x25. + /// + [FontAwesomeSearchTerms(new[] { "percent", "percent sign", "discount", "fraction", "proportion", "rate", "ratio" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Mathematics", "Money", "Punctuation + Symbols" })] + Percent = 0xF295, + + /// + /// The Font Awesome "percent" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x25. + /// + [FontAwesomeSearchTerms(new[] { "percent", "percent sign", "discount", "fraction", "proportion", "rate", "ratio" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Mathematics", "Money", "Punctuation + Symbols" })] + Percentage = 0xF541, + + /// + /// The Font Awesome "periscope" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "periscope" })] + Periscope = 0xF3DA, + + /// + /// The Font Awesome "person-arrow-down-to-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person arrow down to line", "ground", "indigenous", "native" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PersonArrowDownToLine = 0xE538, + + /// + /// The Font Awesome "person-arrow-up-from-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person arrow up from line", "population", "rise" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PersonArrowUpFromLine = 0xE539, + + /// + /// The Font Awesome "person-booth" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person booth", "changing room", "curtain", "vote", "voting" })] + [FontAwesomeCategoriesAttribute(new[] { "Political", "Shopping", "Users + People" })] + PersonBooth = 0xF756, + + /// + /// The Font Awesome "person-breastfeeding" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person breastfeeding", "baby", "child", "infant", "mother", "nutrition", "sustenance" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Humanitarian", "Medical + Health", "Users + People" })] + PersonBreastfeeding = 0xE53A, + + /// + /// The Font Awesome "person-burst" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person burst", "abuse", "accident", "crash", "explode", "violence" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + PersonBurst = 0xE53B, + + /// + /// The Font Awesome "person-cane" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person cane", "aging", "cane", "elderly", "old", "staff" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Humanitarian", "Medical + Health", "Users + People" })] + PersonCane = 0xE53C, + + /// + /// The Font Awesome "person-chalkboard" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person chalkboard", "blackboard", "instructor", "keynote", "lesson", "presentation", "teacher" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Education", "Humanitarian", "Users + People" })] + PersonChalkboard = 0xE53D, + + /// + /// The Font Awesome "person-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person circle check", "approved", "not affected", "ok", "okay" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PersonCircleCheck = 0xE53E, + + /// + /// The Font Awesome "person-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person circle exclamation", "affected", "alert", "lost", "missing" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PersonCircleExclamation = 0xE53F, + + /// + /// The Font Awesome "person-circle-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person circle minus", "delete", "remove" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PersonCircleMinus = 0xE540, + + /// + /// The Font Awesome "person-circle-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person circle plus", "add", "found" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PersonCirclePlus = 0xE541, + + /// + /// The Font Awesome "person-circle-question" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person circle question", "lost", "missing" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PersonCircleQuestion = 0xE542, + + /// + /// The Font Awesome "person-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person circle xmark", "dead", "removed" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PersonCircleXmark = 0xE543, + + /// + /// The Font Awesome "person-digging" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person digging", "bury", "construction", "debris", "dig", "men at work" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Humanitarian", "Users + People" })] + PersonDigging = 0xF85E, + + /// + /// The Font Awesome "person-dress-burst" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person dress burst", "abuse", "accident", "crash", "explode", "violence" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + PersonDressBurst = 0xE544, + + /// + /// The Font Awesome "person-drowning" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person drowning", "drown", "emergency", "swim" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Users + People" })] + PersonDrowning = 0xE545, + + /// + /// The Font Awesome "person-falling" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person falling", "accident", "fall", "trip" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PersonFalling = 0xE546, + + /// + /// The Font Awesome "person-falling-burst" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person falling burst", "accident", "crash", "death", "fall", "homicide", "murder" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + PersonFallingBurst = 0xE547, + + /// + /// The Font Awesome "person-half-dress" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person half dress", "gender", "man", "restroom", "transgender", "woman" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders", "Humanitarian", "Medical + Health", "Users + People" })] + PersonHalfDress = 0xE548, + + /// + /// The Font Awesome "person-harassing" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person harassing", "abuse", "scream", "shame", "shout", "yell" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + PersonHarassing = 0xE549, + + /// + /// The Font Awesome "person-military-pointing" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person military pointing", "army", "customs", "guard" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + PersonMilitaryPointing = 0xE54A, + + /// + /// The Font Awesome "person-military-rifle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person military rifle", "armed forces", "army", "military", "rifle", "war" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + PersonMilitaryRifle = 0xE54B, + + /// + /// The Font Awesome "person-military-to-person" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person military to person", "civilian", "coordination", "military" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + PersonMilitaryToPerson = 0xE54C, + + /// + /// The Font Awesome "person-pregnant" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person pregnant", "baby", "birth", "child", "pregnant", "pregnant woman", "woman" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + PersonPregnant = 0xE31E, + + /// + /// The Font Awesome "person-rays" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person rays", "affected", "focus", "shine" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Marketing", "Users + People" })] + PersonRays = 0xE54D, + + /// + /// The Font Awesome "person-rifle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person rifle", "army", "combatant", "gun", "military", "rifle", "war" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Security", "Users + People" })] + PersonRifle = 0xE54E, + + /// + /// The Font Awesome "person-shelter" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person shelter", "house", "inside", "roof", "safe", "safety", "shelter" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Humanitarian", "Security", "Users + People" })] + PersonShelter = 0xE54F, + + /// + /// The Font Awesome "person-through-window" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person through window", "door", "exit", "forced entry", "leave", "robbery", "steal", "window" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + PersonThroughWindow = 0xE5A9, + + /// + /// The Font Awesome "person-walking-arrow-loop-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person walking arrow loop left", "population return", "return" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Users + People" })] + PersonWalkingArrowLoopLeft = 0xE551, + + /// + /// The Font Awesome "person-walking-arrow-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person walking arrow right", "exit", "internally displaced", "leave", "refugee" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Users + People" })] + PersonWalkingArrowRight = 0xE552, + + /// + /// The Font Awesome "person-walking-dashed-line-arrow-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person walking dashed line arrow right", "exit", "refugee" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Users + People" })] + PersonWalkingDashedLineArrowRight = 0xE553, + + /// + /// The Font Awesome "person-walking-luggage" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person walking luggage", "bag", "baggage", "briefcase", "carry-on", "deployment", "rolling" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Travel + Hotel", "Users + People" })] + PersonWalkingLuggage = 0xE554, + + /// + /// The Font Awesome "peseta-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "peseta sign", "peseta sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + PesetaSign = 0xE221, + + /// + /// The Font Awesome "peso-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "peso sign", "peso sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + PesoSign = 0xE222, + + /// + /// The Font Awesome "phabricator" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "phabricator" })] + Phabricator = 0xF3DB, + + /// + /// The Font Awesome "phoenix-framework" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "phoenix framework" })] + PhoenixFramework = 0xF3DC, + + /// + /// The Font Awesome "phoenix-squadron" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "phoenix squadron" })] + PhoenixSquadron = 0xF511, + + /// + /// The Font Awesome "phone" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "left hand telephone receiver", "call", "earphone", "number", "phone", "receiver", "support", "telephone", "telephone receiver", "voice" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Maps" })] + Phone = 0xF095, + + /// + /// The Font Awesome "phone-flip" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "phone flip", "right hand telephone receiver", "call", "earphone", "number", "support", "telephone", "voice" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Maps" })] + PhoneAlt = 0xF879, + + /// + /// The Font Awesome "phone-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "phone slash", "call", "cancel", "earphone", "mute", "number", "support", "telephone", "voice" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication" })] + PhoneSlash = 0xF3DD, + + /// + /// The Font Awesome "square-phone" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square phone", "call", "earphone", "number", "support", "telephone", "voice" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Maps" })] + PhoneSquare = 0xF098, + + /// + /// The Font Awesome "square-phone-flip" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square phone flip", "call", "earphone", "number", "support", "telephone", "voice" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Communication", "Maps" })] + PhoneSquareAlt = 0xF87B, + + /// + /// The Font Awesome "phone-volume" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "phone volume", "call", "earphone", "number", "sound", "support", "telephone", "voice", "volume-control-phone" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Business", "Communication", "Maps", "Media Playback" })] + PhoneVolume = 0xF2A0, + + /// + /// The Font Awesome "photo-film" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "photo film", "av", "film", "image", "library", "media" })] + [FontAwesomeCategoriesAttribute(new[] { "Files", "Film + Video", "Photos + Images", "Social" })] + PhotoVideo = 0xF87C, + + /// + /// The Font Awesome "php" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "php" })] + Php = 0xF457, + + /// + /// The Font Awesome "pied-piper" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "pied piper" })] + PiedPiper = 0xF2AE, + + /// + /// The Font Awesome "pied-piper-alt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "pied piper alt" })] + PiedPiperAlt = 0xF1A8, + + /// + /// The Font Awesome "pied-piper-hat" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "pied piper hat", "clothing" })] + PiedPiperHat = 0xF4E5, + + /// + /// The Font Awesome "pied-piper-pp" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "pied piper pp" })] + PiedPiperPp = 0xF1A7, + + /// + /// The Font Awesome "piedpipersquare" icon unicode character. + /// + [Obsolete] + PiedPiperSquare = 0xF91E, + + /// + /// The Font Awesome "piggy-bank" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "piggy bank", "bank", "save", "savings" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Money", "Political" })] + PiggyBank = 0xF4D3, + + /// + /// The Font Awesome "pills" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pills", "drugs", "medicine", "prescription", "tablets" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health", "Science" })] + Pills = 0xF484, + + /// + /// The Font Awesome "pinterest" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "pinterest" })] + Pinterest = 0xF0D2, + + /// + /// The Font Awesome "pinterest-p" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "pinterest p" })] + PinterestP = 0xF231, + + /// + /// The Font Awesome "square-pinterest" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square pinterest" })] + PinterestSquare = 0xF0D3, + + /// + /// The Font Awesome "pizza-slice" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pizza slice", "cheese", "chicago", "italian", "mozzarella", "new york", "pepperoni", "pie", "slice", "teenage mutant ninja turtles", "tomato" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage" })] + PizzaSlice = 0xF818, + + /// + /// The Font Awesome "place-of-worship" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "place of worship", "building", "church", "holy", "mosque", "synagogue" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Religion" })] + PlaceOfWorship = 0xF67F, + + /// + /// The Font Awesome "plane" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plane", "airplane", "airport", "destination", "fly", "location", "mode", "travel", "trip" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Transportation", "Travel + Hotel" })] + Plane = 0xF072, + + /// + /// The Font Awesome "plane-arrival" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plane arrival", "aeroplane", "airplane", "airplane arrival", "airport", "arrivals", "arriving", "destination", "fly", "land", "landing", "location", "mode", "travel", "trip" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + PlaneArrival = 0xF5AF, + + /// + /// The Font Awesome "plane-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plane circle check", "airplane", "airport", "flight", "fly", "not affected", "ok", "okay", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Travel + Hotel" })] + PlaneCircleCheck = 0xE555, + + /// + /// The Font Awesome "plane-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plane circle exclamation", "affected", "airplane", "airport", "flight", "fly", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Travel + Hotel" })] + PlaneCircleExclamation = 0xE556, + + /// + /// The Font Awesome "plane-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plane circle xmark", "airplane", "airport", "destroy", "flight", "fly", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Travel + Hotel" })] + PlaneCircleXmark = 0xE557, + + /// + /// The Font Awesome "plane-departure" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plane departure", "aeroplane", "airplane", "airplane departure", "airport", "check-in", "departing", "departure", "departures", "destination", "fly", "location", "mode", "take off", "taking off", "travel", "trip" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + PlaneDeparture = 0xF5B0, + + /// + /// The Font Awesome "plane-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plane lock", "airplane", "airport", "closed", "flight", "fly", "lockdown", "quarantine", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Travel + Hotel" })] + PlaneLock = 0xE558, + + /// + /// The Font Awesome "plane-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plane slash", "airplane mode", "airport", "canceled", "covid-19", "delayed", "grounded", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Transportation", "Travel + Hotel" })] + PlaneSlash = 0xE069, + + /// + /// The Font Awesome "plane-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plane up", "airplane", "airport", "internet", "signal", "sky", "wifi", "wireless" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Toggle", "Transportation", "Travel + Hotel" })] + PlaneUp = 0xE22D, + + /// + /// The Font Awesome "plant-wilt" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plant wilt", "drought", "planting", "vegetation", "wilt" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Nature" })] + PlantWilt = 0xE5AA, + + /// + /// The Font Awesome "plate-wheat" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plate wheat", "bowl", "hunger", "rations", "wheat" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Humanitarian" })] + PlateWheat = 0xE55A, + + /// + /// The Font Awesome "play" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow", "audio", "music", "play", "play button", "playing", "right", "sound", "start", "triangle", "video" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback", "Shapes" })] + Play = 0xF04B, + + /// + /// The Font Awesome "circle-play" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle play", "audio", "music", "playing", "sound", "start", "video" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + PlayCircle = 0xF144, + + /// + /// The Font Awesome "playstation" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "playstation" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + Playstation = 0xF3DF, + + /// + /// The Font Awesome "plug" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "connect", "electric", "electric plug", "electricity", "online", "plug", "power" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware", "Energy", "Household", "Humanitarian", "Maps" })] + Plug = 0xF1E6, + + /// + /// The Font Awesome "plug-circle-bolt" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plug circle bolt", "electric", "electricity", "plug", "power" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Humanitarian" })] + PlugCircleBolt = 0xE55B, + + /// + /// The Font Awesome "plug-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plug circle check", "electric", "electricity", "not affected", "ok", "okay", "plug", "power" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Humanitarian" })] + PlugCircleCheck = 0xE55C, + + /// + /// The Font Awesome "plug-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plug circle exclamation", "affected", "electric", "electricity", "plug", "power" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Humanitarian" })] + PlugCircleExclamation = 0xE55D, + + /// + /// The Font Awesome "plug-circle-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plug circle minus", "electric", "electricity", "plug", "power" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Humanitarian" })] + PlugCircleMinus = 0xE55E, + + /// + /// The Font Awesome "plug-circle-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plug circle plus", "electric", "electricity", "plug", "power" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Humanitarian" })] + PlugCirclePlus = 0xE55F, + + /// + /// The Font Awesome "plug-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plug circle xmark", "destroy", "electric", "electricity", "outage", "plug", "power" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Humanitarian" })] + PlugCircleXmark = 0xE560, + + /// + /// The Font Awesome "plus" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x2B. + /// + [FontAwesomeSearchTerms(new[] { "+", "plus sign", "add", "create", "expand", "math", "new", "plus", "positive", "shape", "sign" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing", "Maps", "Mathematics", "Medical + Health", "Punctuation + Symbols" })] + Plus = 0xF067, + + /// + /// The Font Awesome "circle-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle plus", "add", "create", "expand", "new", "positive", "shape" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + PlusCircle = 0xF055, + + /// + /// The Font Awesome "plus-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "plus minus", "plus-minus sign", "add", "math", "subtract" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics", "Media Playback" })] + PlusMinus = 0xE43C, + + /// + /// The Font Awesome "square-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square plus", "add", "create", "expand", "new", "positive", "shape" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Medical + Health" })] + PlusSquare = 0xF0FE, + + /// + /// The Font Awesome "podcast" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "podcast", "audio", "broadcast", "music", "sound" })] + [FontAwesomeCategoriesAttribute(new[] { "Film + Video" })] + Podcast = 0xF2CE, + + /// + /// The Font Awesome "square-poll-vertical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square poll vertical", "chart", "graph", "results", "survey", "trend", "vote", "voting" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Charts + Diagrams", "Marketing", "Social" })] + Poll = 0xF681, + + /// + /// The Font Awesome "square-poll-horizontal" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square poll horizontal", "chart", "graph", "results", "survey", "trend", "vote", "voting" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Charts + Diagrams", "Marketing", "Social" })] + PollH = 0xF682, + + /// + /// The Font Awesome "poo" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "crap", "dung", "face", "monster", "pile of poo", "poo", "poop", "shit", "smile", "turd" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Users + People" })] + Poo = 0xF2FE, + + /// + /// The Font Awesome "poop" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "crap", "poop", "shit", "smile", "turd" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Medical + Health" })] + Poop = 0xF619, + + /// + /// The Font Awesome "poo-storm" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "poo storm", "bolt", "cloud", "euphemism", "lightning", "mess", "poop", "shit", "turd" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + PooStorm = 0xF75A, + + /// + /// The Font Awesome "image-portrait" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "image portrait", "id", "image", "photo", "picture", "selfie" })] + [FontAwesomeCategoriesAttribute(new[] { "Photos + Images", "Users + People" })] + Portrait = 0xF3E0, + + /// + /// The Font Awesome "sterling-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sterling sign", "pound sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + PoundSign = 0xF154, + + /// + /// The Font Awesome "power-off" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "power off", "power symbol", "cancel", "computer", "on", "reboot", "restart" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware", "Energy" })] + PowerOff = 0xF011, + + /// + /// The Font Awesome "person-praying" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person praying", "kneel", "place of worship", "religion", "thank", "worship" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion", "Users + People" })] + Pray = 0xF683, + + /// + /// The Font Awesome "hands-praying" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "hands praying", "kneel", "preach", "religion", "worship" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands", "Religion" })] + PrayingHands = 0xF684, + + /// + /// The Font Awesome "prescription" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "prescription", "drugs", "medical", "medicine", "pharmacy", "rx" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Prescription = 0xF5B1, + + /// + /// The Font Awesome "prescription-bottle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "prescription bottle", "drugs", "medical", "medicine", "pharmacy", "rx" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Science" })] + PrescriptionBottle = 0xF485, + + /// + /// The Font Awesome "prescription-bottle-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "prescription bottle medical", "drugs", "medical", "medicine", "pharmacy", "rx" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + PrescriptionBottleAlt = 0xF486, + + /// + /// The Font Awesome "print" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "print", "print screen symbol", "printer icon", "business", "computer", "copy", "document", "office", "paper", "printer" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Devices + Hardware", "Maps" })] + Print = 0xF02F, + + /// + /// The Font Awesome "bed-pulse" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bed pulse", "ekg", "bed", "electrocardiogram", "health", "hospital", "life", "patient", "vital" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Procedures = 0xF487, + + /// + /// The Font Awesome "product-hunt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "product hunt" })] + ProductHunt = 0xF288, + + /// + /// The Font Awesome "diagram-project" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "diagram project", "chart", "graph", "network", "pert" })] + [FontAwesomeCategoriesAttribute(new[] { "Charts + Diagrams", "Coding" })] + ProjectDiagram = 0xF542, + + /// + /// The Font Awesome "pump-medical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pump medical", "anti-bacterial", "clean", "covid-19", "disinfect", "hygiene", "medical grade", "sanitizer", "soap" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + PumpMedical = 0xE06A, + + /// + /// The Font Awesome "pump-soap" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "pump soap", "anti-bacterial", "clean", "covid-19", "disinfect", "hygiene", "sanitizer", "soap" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Humanitarian" })] + PumpSoap = 0xE06B, + + /// + /// The Font Awesome "pushed" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "pushed" })] + Pushed = 0xF3E1, + + /// + /// The Font Awesome "puzzle-piece" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "puzzle piece", "add-on", "addon", "clue", "game", "interlocking", "jigsaw", "piece", "puzzle", "puzzle piece", "section" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Gaming" })] + PuzzlePiece = 0xF12E, + + /// + /// The Font Awesome "python" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "python" })] + Python = 0xF3E2, + + /// + /// The Font Awesome "qq" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "qq" })] + Qq = 0xF1D6, + + /// + /// The Font Awesome "qrcode" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "qrcode", "barcode", "info", "information", "scan" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + Qrcode = 0xF029, + + /// + /// The Font Awesome "question" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0x3F. + /// + [FontAwesomeSearchTerms(new[] { "?", "question mark", "help", "information", "mark", "outlined", "punctuation", "question", "red question mark", "support", "unknown", "white question mark" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Alert", "Punctuation + Symbols" })] + Question = 0xF128, + + /// + /// The Font Awesome "circle-question" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle question", "help", "information", "support", "unknown" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Punctuation + Symbols" })] + QuestionCircle = 0xF059, + + /// + /// The Font Awesome "broom-ball" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "broom ball", "ball", "bludger", "broom", "golden snitch", "harry potter", "hogwarts", "quaffle", "sport", "wizard" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + Quidditch = 0xF458, + + /// + /// The Font Awesome "quinscape" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "quinscape" })] + Quinscape = 0xF459, + + /// + /// The Font Awesome "quora" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "quora" })] + Quora = 0xF2C4, + + /// + /// The Font Awesome "quote-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "quote left", "left double quotation mark", "mention", "note", "phrase", "text", "type" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Punctuation + Symbols", "Writing" })] + QuoteLeft = 0xF10D, + + /// + /// The Font Awesome "quote-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "quote right", "right double quotation mark", "mention", "note", "phrase", "text", "type" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Punctuation + Symbols", "Writing" })] + QuoteRight = 0xF10E, + + /// + /// The Font Awesome "book-quran" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "book quran", "book", "islam", "muslim", "religion" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Quran = 0xF687, + + /// + /// The Font Awesome "radiation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "radiation", "danger", "dangerous", "deadly", "hazard", "nuclear", "radioactive", "warning" })] + [FontAwesomeCategoriesAttribute(new[] { "Alert", "Disaster + Crisis", "Energy", "Humanitarian", "Medical + Health", "Science" })] + Radiation = 0xF7B9, + + /// + /// The Font Awesome "circle-radiation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle radiation", "danger", "dangerous", "deadly", "hazard", "nuclear", "radioactive", "sign", "warning" })] + [FontAwesomeCategoriesAttribute(new[] { "Alert", "Disaster + Crisis", "Energy", "Medical + Health", "Science" })] + RadiationAlt = 0xF7BA, + + /// + /// The Font Awesome "radio" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "am", "broadcast", "fm", "frequency", "music", "news", "radio", "receiver", "transmitter", "tuner", "video" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Music + Audio" })] + Radio = 0xF8D7, + + /// + /// The Font Awesome "rainbow" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "gold", "leprechaun", "prism", "rain", "rainbow", "sky" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + Rainbow = 0xF75B, + + /// + /// The Font Awesome "shuffle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow", "arrows", "crossed", "shuffle", "shuffle tracks button", "sort", "swap", "switch", "transfer" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Media Playback" })] + Random = 0xF074, + + /// + /// The Font Awesome "ranking-star" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ranking star", "chart", "first place", "podium", "rank", "win" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Marketing", "Sports + Fitness" })] + RankingStar = 0xE561, + + /// + /// The Font Awesome "raspberry-pi" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "raspberry pi" })] + RaspberryPi = 0xF7BB, + + /// + /// The Font Awesome "ravelry" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ravelry" })] + Ravelry = 0xF2D9, + + /// + /// The Font Awesome "react" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "react" })] + React = 0xF41B, + + /// + /// The Font Awesome "reacteurope" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "reacteurope" })] + Reacteurope = 0xF75D, + + /// + /// The Font Awesome "readme" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "readme" })] + Readme = 0xF4D5, + + /// + /// The Font Awesome "rebel" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "rebel" })] + Rebel = 0xF1D0, + + /// + /// The Font Awesome "receipt" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "accounting", "bookkeeping", "check", "evidence", "invoice", "money", "pay", "proof", "receipt", "table" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Money", "Shopping" })] + Receipt = 0xF543, + + /// + /// The Font Awesome "record-vinyl" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "record vinyl", "lp", "album", "analog", "music", "phonograph", "sound" })] + [FontAwesomeCategoriesAttribute(new[] { "Music + Audio" })] + RecordVinyl = 0xF8D9, + + /// + /// The Font Awesome "recycle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "recycling symbol for generic materials", "universal recycling symbol", "waste", "compost", "garbage", "recycle", "recycling symbol", "reuse", "trash" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Maps" })] + Recycle = 0xF1B8, + + /// + /// The Font Awesome "reddit" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "reddit" })] + Reddit = 0xF1A1, + + /// + /// The Font Awesome "reddit-alien" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "reddit alien" })] + RedditAlien = 0xF281, + + /// + /// The Font Awesome "square-reddit" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square reddit" })] + RedditSquare = 0xF1A2, + + /// + /// The Font Awesome "redhat" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "redhat", "linux", "operating system", "os" })] + Redhat = 0xF7BC, + + /// + /// The Font Awesome "arrow-rotate-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow rotate right", "clockwise open circle arrow", "forward", "refresh", "reload", "repeat" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Media Playback" })] + Redo = 0xF01E, + + /// + /// The Font Awesome "rotate-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "rotate right", "forward", "refresh", "reload", "repeat" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Media Playback" })] + RedoAlt = 0xF2F9, + + /// + /// The Font Awesome "red-river" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "red river" })] + RedRiver = 0xF3E3, + + /// + /// The Font Awesome "registered" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "copyright", "mark", "r", "registered", "trademark" })] + [FontAwesomeCategoriesAttribute(new[] { "Business" })] + Registered = 0xF25D, + + /// + /// The Font Awesome "text-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "text slash", "cancel", "font", "format", "remove", "style", "text" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + RemoveFormat = 0xF87D, + + /// + /// The Font Awesome "renren" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "renren" })] + Renren = 0xF18B, + + /// + /// The Font Awesome "repeat" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow", "clockwise", "flip", "reload", "repeat", "repeat button", "rewind", "switch" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Media Playback" })] + Repeat = 0xF363, + + /// + /// The Font Awesome "reply" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "reply", "mail", "message", "respond" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + Reply = 0xF3E5, + + /// + /// The Font Awesome "reply-all" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "reply all", "mail", "message", "respond" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + ReplyAll = 0xF122, + + /// + /// The Font Awesome "replyd" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "replyd" })] + Replyd = 0xF3E6, + + /// + /// The Font Awesome "republican" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "republican", "american", "conservative", "election", "elephant", "politics", "republican party", "right", "right-wing", "usa" })] + [FontAwesomeCategoriesAttribute(new[] { "Political" })] + Republican = 0xF75E, + + /// + /// The Font Awesome "researchgate" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "researchgate" })] + Researchgate = 0xF4F8, + + /// + /// The Font Awesome "resolving" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "resolving" })] + Resolving = 0xF3E7, + + /// + /// The Font Awesome "restroom" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "restroom", "bathroom", "toilet", "water closet", "wc" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Users + People" })] + Restroom = 0xF7BD, + + /// + /// The Font Awesome "retweet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "retweet", "refresh", "reload", "share", "swap" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Social" })] + Retweet = 0xF079, + + /// + /// The Font Awesome "rev" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "rev" })] + Rev = 0xF5B2, + + /// + /// The Font Awesome "ribbon" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "badge", "cause", "celebration", "lapel", "pin", "reminder", "reminder ribbon", "ribbon" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity" })] + Ribbon = 0xF4D6, + + /// + /// The Font Awesome "ring" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ring", "dungeons & dragons", "gollum", "band", "binding", "d&d", "dnd", "engagement", "fantasy", "gold", "jewelry", "marriage", "precious" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming", "Spinners" })] + Ring = 0xF70B, + + /// + /// The Font Awesome "road" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "highway", "map", "motorway", "pavement", "road", "route", "street", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maps", "Transportation" })] + Road = 0xF018, + + /// + /// The Font Awesome "road-barrier" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "road barrier", "block", "border", "no entry", "roadblock" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Transportation" })] + RoadBarrier = 0xE562, + + /// + /// The Font Awesome "road-bridge" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "road bridge", "bridge", "infrastructure", "road", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics" })] + RoadBridge = 0xE563, + + /// + /// The Font Awesome "road-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "road circle check", "freeway", "highway", "not affected", "ok", "okay", "pavement", "road" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics" })] + RoadCircleCheck = 0xE564, + + /// + /// The Font Awesome "road-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "road circle exclamation", "affected", "freeway", "highway", "pavement", "road" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics" })] + RoadCircleExclamation = 0xE565, + + /// + /// The Font Awesome "road-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "road circle xmark", "destroy", "freeway", "highway", "pavement", "road" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics" })] + RoadCircleXmark = 0xE566, + + /// + /// The Font Awesome "road-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "road lock", "closed", "freeway", "highway", "lockdown", "pavement", "quarantine", "road" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics" })] + RoadLock = 0xE567, + + /// + /// The Font Awesome "road-spikes" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "road spikes", "barrier", "roadblock", "spikes" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Transportation" })] + RoadSpikes = 0xE568, + + /// + /// The Font Awesome "robot" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "android", "automate", "computer", "cyborg", "face", "monster", "robot" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Science Fiction" })] + Robot = 0xF544, + + /// + /// The Font Awesome "rocket" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "rocket", "aircraft", "app", "jet", "launch", "nasa", "space" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Science Fiction", "Transportation" })] + Rocket = 0xF135, + + /// + /// The Font Awesome "rocketchat" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "rocketchat" })] + Rocketchat = 0xF3E8, + + /// + /// The Font Awesome "rockrms" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "rockrms" })] + Rockrms = 0xF3E9, + + /// + /// The Font Awesome "route" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "route", "directions", "navigation", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Maps", "Moving" })] + Route = 0xF4D7, + + /// + /// The Font Awesome "r-project" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "r project" })] + RProject = 0xF4F7, + + /// + /// The Font Awesome "rss" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "rss", "blog", "feed", "journal", "news", "writing" })] + [FontAwesomeCategoriesAttribute(new[] { "Connectivity", "Media Playback" })] + Rss = 0xF09E, + + /// + /// The Font Awesome "square-rss" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square rss", "blog", "feed", "journal", "news", "writing" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Film + Video" })] + RssSquare = 0xF143, + + /// + /// The Font Awesome "ruble-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ruble sign", "ruble sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + RubleSign = 0xF158, + + /// + /// The Font Awesome "rug" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "blanket", "carpet", "rug", "textile" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Humanitarian" })] + Rug = 0xE569, + + /// + /// The Font Awesome "ruler" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "design", "draft", "length", "measure", "planning", "ruler", "straight edge", "straight ruler" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction" })] + Ruler = 0xF545, + + /// + /// The Font Awesome "ruler-combined" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ruler combined", "design", "draft", "length", "measure", "planning" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Design" })] + RulerCombined = 0xF546, + + /// + /// The Font Awesome "ruler-horizontal" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ruler horizontal", "design", "draft", "length", "measure", "planning" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Design" })] + RulerHorizontal = 0xF547, + + /// + /// The Font Awesome "ruler-vertical" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ruler vertical", "design", "draft", "length", "measure", "planning" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Design" })] + RulerVertical = 0xF548, + + /// + /// The Font Awesome "person-running" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person running", "exit", "flee", "marathon", "person running", "race", "running" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness", "Users + People" })] + Running = 0xF70C, + + /// + /// The Font Awesome "rupee-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "rupee sign", "rupee sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + RupeeSign = 0xF156, + + /// + /// The Font Awesome "rupiah-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "rupiah sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + RupiahSign = 0xE23D, + + /// + /// The Font Awesome "sack-dollar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sack dollar", "bag", "burlap", "cash", "dollar", "money", "money bag", "moneybag", "robber", "santa", "usd" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Money" })] + SackDollar = 0xF81D, + + /// + /// The Font Awesome "sack-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sack xmark", "bag", "burlap", "rations" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Money" })] + SackXmark = 0xE56A, + + /// + /// The Font Awesome "face-sad-cry" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face sad cry", "cry", "emoticon", "face", "loudly crying face", "sad", "sob", "tear", "tears" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + SadCry = 0xF5B3, + + /// + /// The Font Awesome "face-sad-tear" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face sad tear", "cry", "crying face", "emoticon", "face", "sad", "tear", "tears" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + SadTear = 0xF5B4, + + /// + /// The Font Awesome "safari" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "safari", "browser" })] + Safari = 0xF267, + + /// + /// The Font Awesome "sailboat" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dinghy", "mast", "sailboat", "sailing", "yacht" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maritime", "Transportation" })] + Sailboat = 0xE445, + + /// + /// The Font Awesome "salesforce" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "salesforce" })] + Salesforce = 0xF83B, + + /// + /// The Font Awesome "sass" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "sass" })] + Sass = 0xF41E, + + /// + /// The Font Awesome "satellite" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "communications", "hardware", "orbit", "satellite", "space" })] + [FontAwesomeCategoriesAttribute(new[] { "Astronomy", "Devices + Hardware" })] + Satellite = 0xF7BF, + + /// + /// The Font Awesome "satellite-dish" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "satellite dish", "seti", "antenna", "communications", "dish", "hardware", "radar", "receiver", "satellite", "satellite antenna", "saucer", "signal", "space" })] + [FontAwesomeCategoriesAttribute(new[] { "Astronomy", "Connectivity", "Devices + Hardware", "Humanitarian" })] + SatelliteDish = 0xF7C0, + + /// + /// The Font Awesome "floppy-disk" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "floppy disk", "black hard shell floppy disk", "computer", "disk", "download", "floppy", "floppy disk", "floppy-o" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design", "Devices + Hardware", "Files" })] + Save = 0xF0C7, + + /// + /// The Font Awesome "schlix" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "schlix" })] + Schlix = 0xF3EA, + + /// + /// The Font Awesome "school" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building", "education", "learn", "school", "student", "teacher" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Childhood", "Education", "Humanitarian" })] + School = 0xF549, + + /// + /// The Font Awesome "school-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "school circle check", "not affected", "ok", "okay", "schoolhouse" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Education", "Humanitarian" })] + SchoolCircleCheck = 0xE56B, + + /// + /// The Font Awesome "school-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "school circle exclamation", "affected", "schoolhouse" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Education", "Humanitarian" })] + SchoolCircleExclamation = 0xE56C, + + /// + /// The Font Awesome "school-circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "school circle xmark", "destroy", "schoolhouse" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Education", "Humanitarian" })] + SchoolCircleXmark = 0xE56D, + + /// + /// The Font Awesome "school-flag" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "school flag", "educate", "flag", "school", "schoolhouse" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Education", "Humanitarian" })] + SchoolFlag = 0xE56E, + + /// + /// The Font Awesome "school-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "school lock", "closed", "lockdown", "quarantine", "schoolhouse" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Education", "Humanitarian" })] + SchoolLock = 0xE56F, + + /// + /// The Font Awesome "screwdriver" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "admin", "fix", "mechanic", "repair", "screw", "screwdriver", "settings", "tool" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction" })] + Screwdriver = 0xF54A, + + /// + /// The Font Awesome "scribd" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "scribd" })] + Scribd = 0xF28A, + + /// + /// The Font Awesome "scroll" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dungeons & dragons", "announcement", "d&d", "dnd", "fantasy", "paper", "script", "scroll" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + Scroll = 0xF70E, + + /// + /// The Font Awesome "sd-card" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sd card", "image", "memory", "photo", "save" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + SdCard = 0xF7C2, + + /// + /// The Font Awesome "magnifying-glass" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "magnifying glass", "bigger", "enlarge", "find", "glass", "magnify", "magnifying", "magnifying glass tilted left", "preview", "search", "tool", "zoom" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + Search = 0xF002, + + /// + /// The Font Awesome "magnifying-glass-dollar" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "magnifying glass dollar", "bigger", "enlarge", "find", "magnify", "money", "preview", "zoom" })] + [FontAwesomeCategoriesAttribute(new[] { "Marketing" })] + SearchDollar = 0xF688, + + /// + /// The Font Awesome "searchengin" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "searchengin" })] + Searchengin = 0xF3EB, + + /// + /// The Font Awesome "magnifying-glass-location" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "magnifying glass location", "bigger", "enlarge", "find", "magnify", "preview", "zoom" })] + [FontAwesomeCategoriesAttribute(new[] { "Marketing" })] + SearchLocation = 0xF689, + + /// + /// The Font Awesome "magnifying-glass-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "magnifying glass minus", "minify", "negative", "smaller", "zoom", "zoom out" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + SearchMinus = 0xF010, + + /// + /// The Font Awesome "magnifying-glass-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "magnifying glass plus", "bigger", "enlarge", "magnify", "positive", "zoom", "zoom in" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + SearchPlus = 0xF00E, + + /// + /// The Font Awesome "section" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "section", "section sign", "law", "legal", "silcrow" })] + [FontAwesomeCategoriesAttribute(new[] { "Punctuation + Symbols" })] + Section = 0xE447, + + /// + /// The Font Awesome "seedling" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "environment", "flora", "grow", "plant", "sapling", "seedling", "vegan", "young" })] + [FontAwesomeCategoriesAttribute(new[] { "Charity", "Energy", "Food + Beverage", "Fruits + Vegetables", "Humanitarian", "Nature", "Science" })] + Seedling = 0xF4D8, + + /// + /// The Font Awesome "sellcast" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "sellcast", "eercast" })] + Sellcast = 0xF2DA, + + /// + /// The Font Awesome "sellsy" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "sellsy" })] + Sellsy = 0xF213, + + /// + /// The Font Awesome "server" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "server", "computer", "cpu", "database", "hardware", "network" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + Server = 0xF233, + + /// + /// The Font Awesome "servicestack" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "servicestack" })] + Servicestack = 0xF3EC, + + /// + /// The Font Awesome "shapes" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shapes", "blocks", "build", "circle", "square", "triangle" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Education", "Shapes" })] + Shapes = 0xF61F, + + /// + /// The Font Awesome "share" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "share", "forward", "save", "send", "social" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Social" })] + Share = 0xF064, + + /// + /// The Font Awesome "share-nodes" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "share nodes", "forward", "save", "send", "social" })] + [FontAwesomeCategoriesAttribute(new[] { "Social" })] + ShareAlt = 0xF1E0, + + /// + /// The Font Awesome "square-share-nodes" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square share nodes", "forward", "save", "send", "social" })] + [FontAwesomeCategoriesAttribute(new[] { "Social" })] + ShareAltSquare = 0xF1E1, + + /// + /// The Font Awesome "share-from-square" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "share from square", "forward", "save", "send", "social" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Social" })] + ShareSquare = 0xF14D, + + /// + /// The Font Awesome "sheet-plastic" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sheet plastic", "plastic", "plastic wrap", "protect", "tarp", "tarpaulin", "waterproof" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Household", "Humanitarian" })] + SheetPlastic = 0xE571, + + /// + /// The Font Awesome "shekel-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shekel sign", "new sheqel sign", "currency", "ils", "money" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + ShekelSign = 0xF20B, + + /// + /// The Font Awesome "shield" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "achievement", "armor", "award", "block", "cleric", "defend", "defense", "holy", "paladin", "protect", "safety", "security", "shield", "weapon", "winner" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Security", "Shapes" })] + Shield = 0xF132, + + /// + /// The Font Awesome "shield-halved" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shield halved", "achievement", "armor", "award", "block", "cleric", "defend", "defense", "holy", "paladin", "security", "shield", "weapon", "winner" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Gaming", "Security" })] + ShieldAlt = 0xF3ED, + + /// + /// The Font Awesome "shield-cat" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shield cat", "animal", "feline", "pet", "protect", "safety", "veterinary" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Humanitarian", "Security" })] + ShieldCat = 0xE572, + + /// + /// The Font Awesome "shield-dog" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shield dog", "animal", "canine", "pet", "protect", "safety", "veterinary" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Humanitarian", "Security" })] + ShieldDog = 0xE573, + + /// + /// The Font Awesome "shield-heart" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shield heart", "love", "protect", "safe", "safety", "shield" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security" })] + ShieldHeart = 0xE574, + + /// + /// The Font Awesome "shield-virus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shield virus", "antibodies", "barrier", "coronavirus", "covid-19", "flu", "health", "infection", "pandemic", "protect", "safety", "vaccine" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + ShieldVirus = 0xE06C, + + /// + /// The Font Awesome "ship" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "boat", "passenger", "sea", "ship", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Maps", "Maritime", "Transportation" })] + Ship = 0xF21A, + + /// + /// The Font Awesome "truck-fast" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck fast", "express", "fedex", "mail", "overnight", "package", "ups" })] + [FontAwesomeCategoriesAttribute(new[] { "Logistics", "Shopping" })] + ShippingFast = 0xF48B, + + /// + /// The Font Awesome "shirtsinbulk" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "shirtsinbulk" })] + Shirtsinbulk = 0xF214, + + /// + /// The Font Awesome "shoe-prints" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shoe prints", "feet", "footprints", "steps", "walk" })] + [FontAwesomeCategoriesAttribute(new[] { "Clothing + Fashion", "Maps", "Sports + Fitness" })] + ShoePrints = 0xF54B, + + /// + /// The Font Awesome "shopify" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "shopify" })] + Shopify = 0xF957, + + /// + /// The Font Awesome "shop-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shop lock", "bodega", "building", "buy", "closed", "lock", "lockdown", "market", "purchase", "quarantine", "shop", "shopping", "store" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Shopping" })] + ShopLock = 0xE4A5, + + /// + /// The Font Awesome "bag-shopping" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bag shopping", "buy", "checkout", "grocery", "payment", "purchase" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Shopping" })] + ShoppingBag = 0xF290, + + /// + /// The Font Awesome "basket-shopping" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "basket shopping", "buy", "checkout", "grocery", "payment", "purchase" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Shopping" })] + ShoppingBasket = 0xF291, + + /// + /// The Font Awesome "cart-shopping" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cart shopping", "buy", "cart", "checkout", "grocery", "payment", "purchase", "shopping", "shopping cart", "trolley" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Shopping", "Transportation" })] + ShoppingCart = 0xF07A, + + /// + /// The Font Awesome "shop-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shop slash", "building", "buy", "closed", "covid-19", "purchase", "shopping" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + ShopSlash = 0xE070, + + /// + /// The Font Awesome "shopware" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "shopware" })] + Shopware = 0xF5B5, + + /// + /// The Font Awesome "shower" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bath", "clean", "faucet", "shower", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Humanitarian", "Maps", "Travel + Hotel" })] + Shower = 0xF2CC, + + /// + /// The Font Awesome "shrimp" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "allergy", "crustacean", "prawn", "seafood", "shellfish", "shrimp", "tail" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Food + Beverage", "Maritime" })] + Shrimp = 0xE448, + + /// + /// The Font Awesome "van-shuttle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "van shuttle", "airport", "bus", "machine", "minibus", "public-transportation", "transportation", "travel", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Transportation", "Travel + Hotel" })] + ShuttleVan = 0xF5B6, + + /// + /// The Font Awesome "sign-hanging" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sign hanging", "directions", "real estate", "signage", "wayfinding" })] + [FontAwesomeCategoriesAttribute(new[] { "Moving" })] + Sign = 0xF4D9, + + /// + /// The Font Awesome "signal" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "signal", "antenna", "antenna bars", "bar", "bars", "cell", "graph", "mobile", "online", "phone", "reception", "status" })] + [FontAwesomeCategoriesAttribute(new[] { "Connectivity", "Toggle" })] + Signal = 0xF012, + + /// + /// The Font Awesome "signature" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "signature", "john hancock", "cursive", "name", "writing" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Editing", "Writing" })] + Signature = 0xF5B7, + + /// + /// The Font Awesome "right-to-bracket" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "right to bracket", "arrow", "enter", "join", "log in", "login", "sign in", "sign up", "sign-in", "signin", "signup" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SignInAlt = 0xF2F6, + + /// + /// The Font Awesome "hands" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "translate", "asl", "deaf", "hands" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility" })] + SignLanguage = 0xF2A7, + + /// + /// The Font Awesome "right-from-bracket" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "right from bracket", "arrow", "exit", "leave", "log out", "logout", "sign-out" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SignOutAlt = 0xF2F5, + + /// + /// The Font Awesome "sim-card" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sim card", "hard drive", "hardware", "portable", "storage", "technology", "tiny" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + SimCard = 0xF7C4, + + /// + /// The Font Awesome "simplybuilt" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "simplybuilt" })] + Simplybuilt = 0xF215, + + /// + /// The Font Awesome "sink" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sink", "bathroom", "covid-19", "faucet", "kitchen", "wash" })] + [FontAwesomeCategoriesAttribute(new[] { "Household" })] + Sink = 0xE06D, + + /// + /// The Font Awesome "sistrix" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "sistrix" })] + Sistrix = 0xF3EE, + + /// + /// The Font Awesome "sitemap" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sitemap", "directory", "hierarchy", "ia", "information architecture", "organization" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Coding" })] + Sitemap = 0xF0E8, + + /// + /// The Font Awesome "sith" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "sith" })] + Sith = 0xF512, + + /// + /// The Font Awesome "person-skating" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person skating", "figure skating", "ice", "olympics", "rink", "skate", "winter" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness", "Users + People" })] + Skating = 0xF7C5, + + /// + /// The Font Awesome "sketch" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "sketch", "app", "design", "interface" })] + Sketch = 0xF7C6, + + /// + /// The Font Awesome "person-skiing" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person skiing", "downhill", "olympics", "ski", "skier", "snow", "winter" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness", "Users + People" })] + Skiing = 0xF7C9, + + /// + /// The Font Awesome "person-skiing-nordic" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person skiing nordic", "cross country", "olympics", "winter" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness", "Users + People" })] + SkiingNordic = 0xF7CA, + + /// + /// The Font Awesome "skull" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bones", "death", "face", "fairy tale", "monster", "skeleton", "skull", "x-ray", "yorick" })] + [FontAwesomeCategoriesAttribute(new[] { "Halloween", "Medical + Health", "Users + People" })] + Skull = 0xF54C, + + /// + /// The Font Awesome "skull-crossbones" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "skull crossbones", "black skull and crossbones", "dungeons & dragons", "alert", "bones", "crossbones", "d&d", "danger", "dangerous area", "dead", "deadly", "death", "dnd", "face", "fantasy", "halloween", "holiday", "jolly-roger", "monster", "pirate", "poison", "skeleton", "skull", "skull and crossbones", "warning" })] + [FontAwesomeCategoriesAttribute(new[] { "Alert", "Gaming", "Halloween", "Humanitarian", "Medical + Health", "Science", "Security" })] + SkullCrossbones = 0xF714, + + /// + /// The Font Awesome "skyatlas" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "skyatlas" })] + Skyatlas = 0xF216, + + /// + /// The Font Awesome "skype" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "skype" })] + Skype = 0xF17E, + + /// + /// The Font Awesome "slack" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "slack", "anchor", "hash", "hashtag" })] + Slack = 0xF198, + + /// + /// The Font Awesome "slack" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF198. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "slack", "anchor", "hash", "hashtag" })] + SlackHash = 0xF3EF, + + /// + /// The Font Awesome "slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "slash", "cancel", "close", "mute", "off", "stop", "x" })] + [FontAwesomeCategoriesAttribute(new[] { "Spinners" })] + Slash = 0xF715, + + /// + /// The Font Awesome "sleigh" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sleigh", "christmas", "claus", "fly", "holiday", "santa", "sled", "snow", "xmas" })] + [FontAwesomeCategoriesAttribute(new[] { "Holidays", "Transportation" })] + Sleigh = 0xF7CC, + + /// + /// The Font Awesome "sliders" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "adjust", "settings", "sliders", "toggle" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing", "Media Playback", "Music + Audio", "Photos + Images" })] + SlidersH = 0xF1DE, + + /// + /// The Font Awesome "slideshare" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "slideshare" })] + Slideshare = 0xF1E7, + + /// + /// The Font Awesome "face-smile" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face smile", "approve", "emoticon", "face", "happy", "rating", "satisfied", "slightly smiling face", "smile" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Emoji", "Users + People" })] + Smile = 0xF118, + + /// + /// The Font Awesome "face-smile-beam" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face smile beam", "blush", "emoticon", "eye", "face", "happy", "positive", "smile", "smiling face with smiling eyes" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + SmileBeam = 0xF5B8, + + /// + /// The Font Awesome "face-smile-wink" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face smile wink", "emoticon", "face", "happy", "hint", "joke", "wink", "winking face" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + SmileWink = 0xF4DA, + + /// + /// The Font Awesome "smog" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "smog", "dragon", "fog", "haze", "pollution", "smoke", "weather" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + Smog = 0xF75F, + + /// + /// The Font Awesome "smoking" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cancer", "cigarette", "nicotine", "smoking", "smoking status", "tobacco" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Travel + Hotel" })] + Smoking = 0xF48D, + + /// + /// The Font Awesome "ban-smoking" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ban smoking", "ban", "cancel", "forbidden", "no", "no smoking", "non-smoking", "not", "prohibited", "smoking" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Travel + Hotel" })] + SmokingBan = 0xF54D, + + /// + /// The Font Awesome "comment-sms" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "comment sms", "chat", "conversation", "message", "mobile", "notification", "phone", "sms", "texting" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication" })] + Sms = 0xF7CD, + + /// + /// The Font Awesome "snapchat" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "snapchat" })] + Snapchat = 0xF2AB, + + /// + /// The Font Awesome "snapchat" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF2AB. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "snapchat" })] + SnapchatGhost = 0xF2AC, + + /// + /// The Font Awesome "square-snapchat" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square snapchat" })] + SnapchatSquare = 0xF2AD, + + /// + /// The Font Awesome "person-snowboarding" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person snowboarding", "olympics", "ski", "snow", "snowboard", "snowboarder", "winter" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness", "Users + People" })] + Snowboarding = 0xF7CE, + + /// + /// The Font Awesome "snowflake" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "heavy chevron snowflake", "cold", "precipitation", "rain", "snow", "snowfall", "snowflake", "winter" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Household", "Humanitarian", "Spinners", "Travel + Hotel", "Weather" })] + Snowflake = 0xF2DC, + + /// + /// The Font Awesome "snowman" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cold", "decoration", "frost", "frosty", "holiday", "snow", "snowman", "snowman without snow" })] + [FontAwesomeCategoriesAttribute(new[] { "Childhood", "Holidays" })] + Snowman = 0xF7D0, + + /// + /// The Font Awesome "snowplow" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "snowplow", "clean up", "cold", "road", "storm", "winter" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Transportation" })] + Snowplow = 0xF7D2, + + /// + /// The Font Awesome "soap" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bar", "bathing", "bubbles", "clean", "cleaning", "covid-19", "hygiene", "lather", "soap", "soapdish", "wash" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Humanitarian" })] + Soap = 0xE06E, + + /// + /// The Font Awesome "socks" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "business socks", "business time", "clothing", "feet", "flight of the conchords", "socks", "stocking", "wednesday" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Clothing + Fashion" })] + Socks = 0xF696, + + /// + /// The Font Awesome "solar-panel" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "solar panel", "clean", "eco-friendly", "energy", "green", "sun" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy" })] + SolarPanel = 0xF5BA, + + /// + /// The Font Awesome "sort" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sort", "filter", "order" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + Sort = 0xF0DC, + + /// + /// The Font Awesome "arrow-down-a-z" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow down a z", "alphabetical", "arrange", "filter", "order", "sort-alpha-asc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortAlphaDown = 0xF15D, + + /// + /// The Font Awesome "arrow-down-z-a" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow down z a", "alphabetical", "arrange", "filter", "order", "sort-alpha-asc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortAlphaDownAlt = 0xF881, + + /// + /// The Font Awesome "arrow-up-a-z" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up a z", "alphabetical", "arrange", "filter", "order", "sort-alpha-desc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortAlphaUp = 0xF15E, + + /// + /// The Font Awesome "arrow-up-z-a" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up z a", "alphabetical", "arrange", "filter", "order", "sort-alpha-desc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortAlphaUpAlt = 0xF882, + + /// + /// The Font Awesome "arrow-down-wide-short" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow down wide short", "arrange", "filter", "number", "order", "sort-amount-asc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortAmountDown = 0xF160, + + /// + /// The Font Awesome "arrow-down-short-wide" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow down short wide", "arrange", "filter", "order", "sort-amount-asc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortAmountDownAlt = 0xF884, + + /// + /// The Font Awesome "arrow-up-wide-short" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up wide short", "arrange", "filter", "order", "sort-amount-desc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortAmountUp = 0xF161, + + /// + /// The Font Awesome "arrow-up-short-wide" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up short wide", "arrange", "filter", "order", "sort-amount-desc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortAmountUpAlt = 0xF885, + + /// + /// The Font Awesome "sort-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sort down", "arrow", "descending", "filter", "order", "sort-desc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortDown = 0xF0DD, + + /// + /// The Font Awesome "arrow-down-1-9" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow down 1 9", "arrange", "filter", "numbers", "order", "sort-numeric-asc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortNumericDown = 0xF162, + + /// + /// The Font Awesome "arrow-down-9-1" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow down 9 1", "arrange", "filter", "numbers", "order", "sort-numeric-asc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortNumericDownAlt = 0xF886, + + /// + /// The Font Awesome "arrow-up-1-9" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up 1 9", "arrange", "filter", "numbers", "order", "sort-numeric-desc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortNumericUp = 0xF163, + + /// + /// The Font Awesome "arrow-up-9-1" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow up 9 1", "arrange", "filter", "numbers", "order", "sort-numeric-desc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortNumericUpAlt = 0xF887, + + /// + /// The Font Awesome "sort-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sort up", "arrow", "ascending", "filter", "order", "sort-asc" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SortUp = 0xF0DE, + + /// + /// The Font Awesome "soundcloud" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "soundcloud" })] + [FontAwesomeCategoriesAttribute(new[] { "Music + Audio" })] + Soundcloud = 0xF1BE, + + /// + /// The Font Awesome "sourcetree" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "sourcetree" })] + Sourcetree = 0xF7D3, + + /// + /// The Font Awesome "spa" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "spa", "flora", "massage", "mindfulness", "plant", "wellness" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness", "Travel + Hotel" })] + Spa = 0xF5BB, + + /// + /// The Font Awesome "shuttle-space" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shuttle space", "astronaut", "machine", "nasa", "rocket", "space", "transportation" })] + [FontAwesomeCategoriesAttribute(new[] { "Astronomy", "Transportation" })] + SpaceShuttle = 0xF197, + + /// + /// The Font Awesome "speakap" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "speakap" })] + Speakap = 0xF3F3, + + /// + /// The Font Awesome "speaker-deck" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "speaker deck" })] + SpeakerDeck = 0xF83C, + + /// + /// The Font Awesome "spell-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "spell check", "dictionary", "edit", "editor", "grammar", "text" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + SpellCheck = 0xF891, + + /// + /// The Font Awesome "spider" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arachnid", "bug", "charlotte", "crawl", "eight", "halloween", "insect", "spider" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Halloween", "Nature" })] + Spider = 0xF717, + + /// + /// The Font Awesome "spinner" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "spinner", "circle", "loading", "progress" })] + [FontAwesomeCategoriesAttribute(new[] { "Spinners" })] + Spinner = 0xF110, + + /// + /// The Font Awesome "splotch" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "splotch", "ink", "blob", "blotch", "glob", "stain" })] + [FontAwesomeCategoriesAttribute(new[] { "Design" })] + Splotch = 0xF5BC, + + /// + /// The Font Awesome "spotify" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "spotify" })] + [FontAwesomeCategoriesAttribute(new[] { "Music + Audio" })] + Spotify = 0xF1BC, + + /// + /// The Font Awesome "spray-can" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "spray can", "paint", "aerosol", "design", "graffiti", "tag" })] + [FontAwesomeCategoriesAttribute(new[] { "Design" })] + SprayCan = 0xF5BD, + + /// + /// The Font Awesome "square" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "black square", "black medium square", "block", "box", "geometric", "shape", "square", "white medium square" })] + [FontAwesomeCategoriesAttribute(new[] { "Shapes" })] + Square = 0xF0C8, + + /// + /// The Font Awesome "square-arrow-up-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square arrow up right", "diagonal", "new", "open", "send", "share" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows" })] + SquareArrowUpRight = 0xF14C, + + /// + /// The Font Awesome "square-full" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square full", "black large square", "block", "blue", "blue square", "box", "brown", "brown square", "geometric", "green", "green square", "orange", "orange square", "purple", "purple square", "red", "red square", "shape", "square", "white large square", "yellow", "yellow square" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + SquareFull = 0xF45C, + + /// + /// The Font Awesome "square-nfi" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square nfi", "non-food item", "supplies" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics" })] + SquareNfi = 0xE576, + + /// + /// The Font Awesome "square-person-confined" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square person confined", "captivity", "confined" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Security", "Users + People" })] + SquarePersonConfined = 0xE577, + + /// + /// The Font Awesome "square-root-variable" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square root variable", "arithmetic", "calculus", "division", "math" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + SquareRootAlt = 0xF698, + + /// + /// The Font Awesome "squarespace" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "squarespace" })] + Squarespace = 0xF5BE, + + /// + /// The Font Awesome "square-virus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square virus", "coronavirus", "covid-19", "disease", "flu", "infection", "pandemic" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health", "Science" })] + SquareVirus = 0xE578, + + /// + /// The Font Awesome "square-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "square xmark", "close", "cross", "cross mark button", "incorrect", "mark", "notice", "notification", "notify", "problem", "square", "window", "wrong", "x", "×" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + SquareXmark = 0xF2D3, + + /// + /// The Font Awesome "stack-exchange" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "stack exchange" })] + StackExchange = 0xF18D, + + /// + /// The Font Awesome "stack-overflow" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "stack overflow" })] + StackOverflow = 0xF16C, + + /// + /// The Font Awesome "stackpath" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "stackpath" })] + Stackpath = 0xF842, + + /// + /// The Font Awesome "staff-snake" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "staff snake", "asclepius", "asklepian", "health", "serpent", "wellness" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + StaffSnake = 0xE579, + + /// + /// The Font Awesome "stairs" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "stairs", "exit", "steps", "up" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Travel + Hotel" })] + Stairs = 0xE289, + + /// + /// The Font Awesome "stamp" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "stamp", "art", "certificate", "imprint", "rubber", "seal" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Money" })] + Stamp = 0xF5BF, + + /// + /// The Font Awesome "stapler" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "stapler", "desktop", "milton", "office", "paperclip", "staple" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Design" })] + Stapler = 0xE5AF, + + /// + /// The Font Awesome "star" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "achievement", "award", "favorite", "important", "night", "rating", "score", "star" })] + [FontAwesomeCategoriesAttribute(new[] { "Shapes", "Shopping", "Social", "Toggle" })] + Star = 0xF005, + + /// + /// The Font Awesome "star-and-crescent" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "star and crescent", "muslim", "islam", "muslim", "religion", "star and crescent" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + StarAndCrescent = 0xF699, + + /// + /// The Font Awesome "star-half" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "star half", "achievement", "award", "rating", "score", "star-half-empty", "star-half-full" })] + [FontAwesomeCategoriesAttribute(new[] { "Toggle" })] + StarHalf = 0xF089, + + /// + /// The Font Awesome "star-half-stroke" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "star half stroke", "achievement", "award", "rating", "score", "star-half-empty", "star-half-full" })] + [FontAwesomeCategoriesAttribute(new[] { "Toggle" })] + StarHalfAlt = 0xF5C0, + + /// + /// The Font Awesome "star-of-david" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "star of david", "david", "jew", "jewish", "jewish", "judaism", "religion", "star", "star of david" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + StarOfDavid = 0xF69A, + + /// + /// The Font Awesome "star-of-life" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "star of life", "doctor", "emt", "first aid", "health", "medical" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + StarOfLife = 0xF621, + + /// + /// The Font Awesome "staylinked" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "staylinked" })] + Staylinked = 0xF3F5, + + /// + /// The Font Awesome "steam" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "steam" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + Steam = 0xF1B6, + + /// + /// The Font Awesome "square-steam" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square steam" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + SteamSquare = 0xF1B7, + + /// + /// The Font Awesome "steam-symbol" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "steam symbol" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + SteamSymbol = 0xF3F6, + + /// + /// The Font Awesome "backward-step" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "backward step", "beginning", "first", "previous", "rewind", "start" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + StepBackward = 0xF048, + + /// + /// The Font Awesome "forward-step" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "forward step", "end", "last", "next" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + StepForward = 0xF051, + + /// + /// The Font Awesome "stethoscope" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "covid-19", "diagnosis", "doctor", "general practitioner", "heart", "hospital", "infirmary", "medicine", "office", "outpatient", "stethoscope" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + Stethoscope = 0xF0F1, + + /// + /// The Font Awesome "sticker-mule" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "sticker mule" })] + StickerMule = 0xF3F7, + + /// + /// The Font Awesome "note-sticky" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "note sticky", "message", "note", "paper", "reminder", "sticker" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Files", "Writing" })] + StickyNote = 0xF249, + + /// + /// The Font Awesome "stop" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "block", "box", "square", "stop", "stop button" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + Stop = 0xF04D, + + /// + /// The Font Awesome "circle-stop" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle stop", "block", "box", "circle", "square" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback" })] + StopCircle = 0xF28D, + + /// + /// The Font Awesome "stopwatch" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "clock", "reminder", "stopwatch", "time" })] + [FontAwesomeCategoriesAttribute(new[] { "Time" })] + Stopwatch = 0xF2F2, + + /// + /// The Font Awesome "stopwatch-20" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "stopwatch 20", "abcs", "countdown", "covid-19", "happy birthday", "i will survive", "reminder", "seconds", "time", "timer" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness", "Time" })] + Stopwatch20 = 0xE06F, + + /// + /// The Font Awesome "store" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bodega", "building", "buy", "market", "purchase", "shopping", "store" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Shopping" })] + Store = 0xF54E, + + /// + /// The Font Awesome "shop" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "shop", "bodega", "building", "buy", "market", "purchase", "shopping", "store" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Shopping" })] + StoreAlt = 0xF54F, + + /// + /// The Font Awesome "store-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "store slash", "building", "buy", "closed", "covid-19", "purchase", "shopping" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + StoreSlash = 0xE071, + + /// + /// The Font Awesome "strava" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "strava" })] + Strava = 0xF428, + + /// + /// The Font Awesome "bars-staggered" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bars staggered", "flow", "list", "timeline" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Coding" })] + Stream = 0xF550, + + /// + /// The Font Awesome "street-view" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "street view", "directions", "location", "map", "navigation" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Users + People" })] + StreetView = 0xF21D, + + /// + /// The Font Awesome "strikethrough" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "strikethrough", "cancel", "edit", "font", "format", "text", "type" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + Strikethrough = 0xF0CC, + + /// + /// The Font Awesome "stripe" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "stripe" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + Stripe = 0xF429, + + /// + /// The Font Awesome "stripe-s" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "stripe s" })] + [FontAwesomeCategoriesAttribute(new[] { "Shopping" })] + StripeS = 0xF42A, + + /// + /// The Font Awesome "stroopwafel" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "stroopwafel", "caramel", "cookie", "dessert", "sweets", "waffle" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Spinners" })] + Stroopwafel = 0xF551, + + /// + /// The Font Awesome "studiovinari" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "studiovinari" })] + Studiovinari = 0xF3F8, + + /// + /// The Font Awesome "stumbleupon" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "stumbleupon" })] + Stumbleupon = 0xF1A4, + + /// + /// The Font Awesome "stumbleupon-circle" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "stumbleupon circle" })] + StumbleuponCircle = 0xF1A3, + + /// + /// The Font Awesome "subscript" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "subscript", "edit", "font", "format", "text", "type" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics", "Text Formatting" })] + Subscript = 0xF12C, + + /// + /// The Font Awesome "train-subway" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "train subway", "machine", "railway", "train", "transportation", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Maps", "Transportation" })] + Subway = 0xF239, + + /// + /// The Font Awesome "suitcase" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "baggage", "luggage", "move", "packing", "suitcase", "travel", "trip" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Moving", "Travel + Hotel" })] + Suitcase = 0xF0F2, + + /// + /// The Font Awesome "suitcase-rolling" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "suitcase rolling", "baggage", "luggage", "move", "suitcase", "travel", "trip" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + SuitcaseRolling = 0xF5C1, + + /// + /// The Font Awesome "sun" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bright", "brighten", "contrast", "day", "lighter", "rays", "sol", "solar", "star", "sun", "sunny", "weather" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Spinners", "Weather" })] + Sun = 0xF185, + + /// + /// The Font Awesome "sun-plant-wilt" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "sun plant wilt", "arid", "droop", "drought" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Weather" })] + SunPlantWilt = 0xE57A, + + /// + /// The Font Awesome "superpowers" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "superpowers" })] + Superpowers = 0xF2DD, + + /// + /// The Font Awesome "superscript" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "superscript", "edit", "exponential", "font", "format", "text", "type" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics", "Text Formatting" })] + Superscript = 0xF12B, + + /// + /// The Font Awesome "supple" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "supple" })] + Supple = 0xF3F9, + + /// + /// The Font Awesome "face-surprise" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face surprise", "emoticon", "face", "face with open mouth", "mouth", "open", "shocked", "sympathy" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + Surprise = 0xF5C2, + + /// + /// The Font Awesome "suse" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "suse", "linux", "operating system", "os" })] + Suse = 0xF7D6, + + /// + /// The Font Awesome "swatchbook" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "swatchbook", "pantone", "color", "design", "hue", "palette" })] + [FontAwesomeCategoriesAttribute(new[] { "Design" })] + Swatchbook = 0xF5C3, + + /// + /// The Font Awesome "swift" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "swift" })] + Swift = 0xF8E1, + + /// + /// The Font Awesome "person-swimming" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person swimming", "ocean", "person swimming", "pool", "sea", "swim", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Maritime", "Sports + Fitness", "Travel + Hotel", "Users + People" })] + Swimmer = 0xF5C4, + + /// + /// The Font Awesome "water-ladder" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "water ladder", "ladder", "recreation", "swim", "water" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + SwimmingPool = 0xF5C5, + + /// + /// The Font Awesome "symfony" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "symfony" })] + Symfony = 0xF83D, + + /// + /// The Font Awesome "synagogue" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "jew", "jewish", "building", "jewish", "judaism", "religion", "star of david", "synagogue", "temple" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Religion" })] + Synagogue = 0xF69B, + + /// + /// The Font Awesome "arrows-rotate" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrows rotate", "clockwise right and left semicircle arrows", "exchange", "refresh", "reload", "rotate", "swap" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Editing", "Media Playback" })] + Sync = 0xF021, + + /// + /// The Font Awesome "rotate" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "anticlockwise", "arrow", "counterclockwise", "counterclockwise arrows button", "exchange", "refresh", "reload", "rotate", "swap", "withershins" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Editing", "Media Playback", "Spinners" })] + SyncAlt = 0xF2F1, + + /// + /// The Font Awesome "syringe" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "covid-19", "doctor", "immunizations", "medical", "medicine", "needle", "shot", "sick", "syringe", "vaccinate", "vaccine" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health", "Science" })] + Syringe = 0xF48E, + + /// + /// The Font Awesome "table" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "table", "data", "excel", "spreadsheet" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Text Formatting" })] + Table = 0xF0CE, + + /// + /// The Font Awesome "tablet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tablet", "device", "kindle", "screen" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + Tablet = 0xF3FB, + + /// + /// The Font Awesome "tablet-screen-button" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tablet screen button", "apple", "device", "ipad", "kindle", "screen" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + TabletAlt = 0xF3FA, + + /// + /// The Font Awesome "tablet-button" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tablet button", "apple", "device", "ipad", "kindle", "screen" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware" })] + TabletButton = 0xF10A, + + /// + /// The Font Awesome "table-tennis-paddle-ball" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "table tennis paddle ball", "ball", "bat", "game", "paddle", "ping pong", "table tennis" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + TableTennis = 0xF45D, + + /// + /// The Font Awesome "tablets" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tablets", "drugs", "medicine", "pills", "prescription" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Science" })] + Tablets = 0xF490, + + /// + /// The Font Awesome "gauge-high" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF625. + /// + [FontAwesomeSearchTerms(new[] { "gauge high", "dashboard", "fast", "odometer", "speed", "speedometer" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive" })] + TachometerAlt = 0xF3FD, + + /// + /// The Font Awesome "tag" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tag", "discount", "labe", "label", "price", "shopping" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Maps", "Shopping" })] + Tag = 0xF02B, + + /// + /// The Font Awesome "tags" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tags", "discount", "label", "price", "shopping" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Maps", "Shopping" })] + Tags = 0xF02C, + + /// + /// The Font Awesome "tape" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tape", "design", "package", "sticky" })] + [FontAwesomeCategoriesAttribute(new[] { "Moving" })] + Tape = 0xF4DB, + + /// + /// The Font Awesome "tarp" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "protection", "tarp", "tent", "waterproof" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Construction", "Humanitarian" })] + Tarp = 0xE57B, + + /// + /// The Font Awesome "tarp-droplet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tarp droplet", "protection", "tarp", "tent", "waterproof" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Construction", "Humanitarian" })] + TarpDroplet = 0xE57C, + + /// + /// The Font Awesome "list-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "list check", "checklist", "downloading", "downloads", "loading", "progress", "project management", "settings", "to do" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Text Formatting" })] + Tasks = 0xF0AE, + + /// + /// The Font Awesome "taxi" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cab", "cabbie", "car", "car service", "lyft", "machine", "oncoming", "oncoming taxi", "taxi", "transportation", "travel", "uber", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Maps", "Transportation", "Travel + Hotel" })] + Taxi = 0xF1BA, + + /// + /// The Font Awesome "teamspeak" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "teamspeak" })] + Teamspeak = 0xF4F9, + + /// + /// The Font Awesome "teeth" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "teeth", "bite", "dental", "dentist", "gums", "mouth", "smile", "tooth" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Teeth = 0xF62E, + + /// + /// The Font Awesome "teeth-open" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "teeth open", "dental", "dentist", "gums bite", "mouth", "smile", "tooth" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + TeethOpen = 0xF62F, + + /// + /// The Font Awesome "telegram" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "telegram" })] + Telegram = 0xF2C6, + + /// + /// The Font Awesome "telegram" icon unicode character. + /// Uses a legacy unicode value for backwards compatability. The current unicode value is 0xF2C6. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "telegram" })] + TelegramPlane = 0xF3FE, + + /// + /// The Font Awesome "temperature-arrow-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "temperature arrow down", "air conditioner", "cold", "heater", "mercury", "thermometer", "winter" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Household", "Humanitarian", "Weather" })] + TemperatureArrowDown = 0xE03F, + + /// + /// The Font Awesome "temperature-arrow-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "temperature arrow up", "air conditioner", "cold", "heater", "mercury", "thermometer", "winter" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Household", "Humanitarian", "Weather" })] + TemperatureArrowUp = 0xE040, + + /// + /// The Font Awesome "temperature-high" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "temperature high", "cook", "covid-19", "mercury", "summer", "thermometer", "warm" })] + [FontAwesomeCategoriesAttribute(new[] { "Science", "Weather" })] + TemperatureHigh = 0xF769, + + /// + /// The Font Awesome "temperature-low" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "temperature low", "cold", "cool", "covid-19", "mercury", "thermometer", "winter" })] + [FontAwesomeCategoriesAttribute(new[] { "Science", "Weather" })] + TemperatureLow = 0xF76B, + + /// + /// The Font Awesome "tencent-weibo" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "tencent weibo" })] + TencentWeibo = 0xF1D5, + + /// + /// The Font Awesome "tenge-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tenge sign", "tenge sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + Tenge = 0xF7D7, + + /// + /// The Font Awesome "tent" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bivouac", "campground", "refugee", "shelter", "tent" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Camping", "Humanitarian" })] + Tent = 0xE57D, + + /// + /// The Font Awesome "tent-arrow-down-to-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tent arrow down to line", "permanent", "refugee", "shelter" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Camping", "Humanitarian" })] + TentArrowDownToLine = 0xE57E, + + /// + /// The Font Awesome "tent-arrow-left-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tent arrow left right", "refugee", "shelter", "transition" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Camping", "Humanitarian" })] + TentArrowLeftRight = 0xE57F, + + /// + /// The Font Awesome "tent-arrows-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tent arrows down", "refugee", "shelter", "spontaneous" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Camping", "Humanitarian" })] + TentArrowsDown = 0xE581, + + /// + /// The Font Awesome "tent-arrow-turn-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tent arrow turn left", "refugee", "shelter", "temporary" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Camping", "Humanitarian" })] + TentArrowTurnLeft = 0xE580, + + /// + /// The Font Awesome "tents" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tents", "bivouac", "campground", "refugee", "shelter", "tent" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Camping", "Humanitarian" })] + Tents = 0xE582, + + /// + /// The Font Awesome "terminal" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "code", "coding", "command", "console", "development", "prompt", "terminal" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + Terminal = 0xF120, + + /// + /// The Font Awesome "text-height" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "text height", "edit", "font", "format", "text", "type" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + TextHeight = 0xF034, + + /// + /// The Font Awesome "text-width" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "text width", "edit", "font", "format", "text", "type" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + TextWidth = 0xF035, + + /// + /// The Font Awesome "table-cells" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "table cells", "blocks", "boxes", "grid", "squares" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + Th = 0xF00A, + + /// + /// The Font Awesome "masks-theater" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "masks theater", "art", "comedy", "mask", "perform", "performing", "performing arts", "theater", "theatre", "tragedy" })] + [FontAwesomeCategoriesAttribute(new[] { "Education" })] + TheaterMasks = 0xF630, + + /// + /// The Font Awesome "themeco" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "themeco" })] + Themeco = 0xF5C6, + + /// + /// The Font Awesome "themeisle" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "themeisle" })] + Themeisle = 0xF2B2, + + /// + /// The Font Awesome "the-red-yeti" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "the red yeti" })] + TheRedYeti = 0xF69D, + + /// + /// The Font Awesome "thermometer" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "thermometer", "covid-19", "mercury", "status", "temperature" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Thermometer = 0xF491, + + /// + /// The Font Awesome "temperature-empty" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "temperature empty", "cold", "mercury", "status", "temperature" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + ThermometerEmpty = 0xF2CB, + + /// + /// The Font Awesome "temperature-full" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "temperature full", "fever", "hot", "mercury", "status", "temperature" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + ThermometerFull = 0xF2C7, + + /// + /// The Font Awesome "temperature-half" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "temperature half", "mercury", "status", "temperature", "thermometer", "weather" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + ThermometerHalf = 0xF2C9, + + /// + /// The Font Awesome "temperature-quarter" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "temperature quarter", "mercury", "status", "temperature" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + ThermometerQuarter = 0xF2CA, + + /// + /// The Font Awesome "temperature-three-quarters" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "temperature three quarters", "mercury", "status", "temperature" })] + [FontAwesomeCategoriesAttribute(new[] { "Weather" })] + ThermometerThreeQuarters = 0xF2C8, + + /// + /// The Font Awesome "think-peaks" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "think peaks" })] + ThinkPeaks = 0xF731, + + /// + /// The Font Awesome "table-cells-large" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "table cells large", "blocks", "boxes", "grid", "squares" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + ThLarge = 0xF009, + + /// + /// The Font Awesome "table-list" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "table list", "checklist", "completed", "done", "finished", "ol", "todo", "ul" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + ThList = 0xF00B, + + /// + /// The Font Awesome "thumbs-down" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "thumbs down", "-1", "disagree", "disapprove", "dislike", "down", "hand", "social", "thumb", "thumbs down", "thumbs-o-down" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands", "Shopping", "Social" })] + ThumbsDown = 0xF165, + + /// + /// The Font Awesome "thumbs-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "thumbs up", "+1", "agree", "approve", "favorite", "hand", "like", "ok", "okay", "social", "success", "thumb", "thumbs up", "thumbs-o-up", "up", "yes", "you got it dude" })] + [FontAwesomeCategoriesAttribute(new[] { "Hands", "Shopping", "Social" })] + ThumbsUp = 0xF164, + + /// + /// The Font Awesome "thumbtack" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "thumbtack", "black pushpin", "coordinates", "location", "marker", "pin", "pushpin", "thumb-tack" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Maps", "Social", "Writing" })] + Thumbtack = 0xF08D, + + /// + /// The Font Awesome "ticket" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "admission", "admission tickets", "movie", "pass", "support", "ticket" })] + [FontAwesomeCategoriesAttribute(new[] { "Film + Video", "Maps" })] + Ticket = 0xF145, + + /// + /// The Font Awesome "ticket-simple" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ticket simple", "movie", "pass", "support", "ticket" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Shapes" })] + TicketAlt = 0xF3FF, + + /// + /// The Font Awesome "timeline" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "timeline", "chronological", "deadline", "history", "linear" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Marketing" })] + Timeline = 0xE29C, + + /// + /// The Font Awesome "xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "xmark", "cancellation x", "multiplication sign", "multiplication x", "cancel", "close", "cross", "cross mark", "error", "exit", "incorrect", "mark", "multiplication", "multiply", "notice", "notification", "notify", "problem", "sign", "wrong", "x", "×" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing", "Mathematics" })] + Times = 0xF00D, + + /// + /// The Font Awesome "circle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle xmark", "close", "cross", "destroy", "exit", "incorrect", "notice", "notification", "notify", "problem", "wrong", "x" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + TimesCircle = 0xF057, + + /// + /// The Font Awesome "droplet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cold", "color", "comic", "drop", "droplet", "raindrop", "sweat", "waterdrop" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Humanitarian", "Maps", "Photos + Images" })] + Tint = 0xF043, + + /// + /// The Font Awesome "droplet-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "droplet slash", "color", "drop", "droplet", "raindrop", "waterdrop" })] + [FontAwesomeCategoriesAttribute(new[] { "Design" })] + TintSlash = 0xF5C7, + + /// + /// The Font Awesome "face-tired" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "face tired", "angry", "emoticon", "face", "grumpy", "tired", "tired face", "upset" })] + [FontAwesomeCategoriesAttribute(new[] { "Emoji" })] + Tired = 0xF5C8, + + /// + /// The Font Awesome "toggle-off" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "toggle off", "button", "off", "on", "switch" })] + [FontAwesomeCategoriesAttribute(new[] { "Toggle" })] + ToggleOff = 0xF204, + + /// + /// The Font Awesome "toggle-on" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "toggle on", "button", "off", "on", "switch" })] + [FontAwesomeCategoriesAttribute(new[] { "Toggle" })] + ToggleOn = 0xF205, + + /// + /// The Font Awesome "toilet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bathroom", "flush", "john", "loo", "pee", "plumbing", "poop", "porcelain", "potty", "restroom", "throne", "toile", "toilet", "washroom", "waste", "wc" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Humanitarian", "Travel + Hotel" })] + Toilet = 0xF7D8, + + /// + /// The Font Awesome "toilet-paper" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "toilet paper", "bathroom", "covid-19", "halloween", "holiday", "lavatory", "paper towels", "prank", "privy", "restroom", "roll", "roll of paper", "toilet", "toilet paper", "wipe" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Halloween", "Household", "Travel + Hotel" })] + ToiletPaper = 0xF71E, + + /// + /// The Font Awesome "toilet-paper-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "toilet paper slash", "bathroom", "covid-19", "halloween", "holiday", "lavatory", "leaves", "prank", "privy", "restroom", "roll", "toilet", "trouble", "ut oh", "wipe" })] + [FontAwesomeCategoriesAttribute(new[] { "Household" })] + ToiletPaperSlash = 0xE072, + + /// + /// The Font Awesome "toilet-portable" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "toilet portable", "outhouse", "toilet" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Construction", "Humanitarian" })] + ToiletPortable = 0xE583, + + /// + /// The Font Awesome "toilets-portable" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "toilets portable", "outhouse", "toilet" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Construction", "Humanitarian" })] + ToiletsPortable = 0xE584, + + /// + /// The Font Awesome "toolbox" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "admin", "chest", "container", "fix", "mechanic", "repair", "settings", "tool", "toolbox", "tools" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction" })] + Toolbox = 0xF552, + + /// + /// The Font Awesome "screwdriver-wrench" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "screwdriver wrench", "admin", "fix", "repair", "screwdriver", "settings", "tools", "wrench" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction" })] + Tools = 0xF7D9, + + /// + /// The Font Awesome "tooth" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bicuspid", "dental", "dentist", "molar", "mouth", "teeth", "tooth" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Tooth = 0xF5C9, + + /// + /// The Font Awesome "scroll-torah" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "scroll torah", "book", "jewish", "judaism", "religion", "scroll" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion" })] + Torah = 0xF6A0, + + /// + /// The Font Awesome "torii-gate" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "torii gate", "building", "religion", "shinto", "shinto shrine", "shintoism", "shrine" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Religion" })] + ToriiGate = 0xF6A1, + + /// + /// The Font Awesome "tornado" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cloud", "cyclone", "dorothy", "landspout", "tornado", "toto", "twister", "vortext", "waterspout", "weather", "whirlwind" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Weather" })] + Tornado = 0xF76F, + + /// + /// The Font Awesome "tower-cell" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tower cell", "airwaves", "antenna", "communication", "radio", "reception", "waves" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Connectivity", "Film + Video", "Humanitarian" })] + TowerCell = 0xE585, + + /// + /// The Font Awesome "tower-observation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tower observation", "fire tower", "view" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Security" })] + TowerObservation = 0xE586, + + /// + /// The Font Awesome "tractor" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "agriculture", "farm", "tractor", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Transportation" })] + Tractor = 0xF722, + + /// + /// The Font Awesome "trade-federation" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "trade federation" })] + TradeFederation = 0xF513, + + /// + /// The Font Awesome "trademark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "copyright", "mark", "register", "symbol", "tm", "trade mark", "trademark" })] + [FontAwesomeCategoriesAttribute(new[] { "Business" })] + Trademark = 0xF25C, + + /// + /// The Font Awesome "traffic-light" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "traffic light", "direction", "light", "road", "signal", "traffic", "travel", "vertical traffic light" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps" })] + TrafficLight = 0xF637, + + /// + /// The Font Awesome "trailer" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "trailer", "carry", "haul", "moving", "travel" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Camping", "Moving" })] + Trailer = 0xF941, + + /// + /// The Font Awesome "train" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bullet", "commute", "locomotive", "railway", "subway", "train" })] + [FontAwesomeCategoriesAttribute(new[] { "Logistics", "Maps", "Transportation" })] + Train = 0xF238, + + /// + /// The Font Awesome "train-tram" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "train tram", "crossing", "machine", "mountains", "seasonal", "tram", "transportation", "trolleybus" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Transportation", "Travel + Hotel" })] + TrainTram = 0xE5B4, + + /// + /// The Font Awesome "cable-car" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cable car", "aerial tramway", "cable", "gondola", "lift", "mountain", "mountain cableway", "tram", "tramway", "trolley" })] + [FontAwesomeCategoriesAttribute(new[] { "Transportation", "Travel + Hotel" })] + Tram = 0xF7DA, + + /// + /// The Font Awesome "mars-and-venus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "mars and venus", "male and female sign", "female", "gender", "intersex", "male", "transgender" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders", "Humanitarian" })] + Transgender = 0xF224, + + /// + /// The Font Awesome "transgender" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "female", "gender", "intersex", "male", "transgender", "transgender symbol" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + TransgenderAlt = 0xF225, + + /// + /// The Font Awesome "trash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "trash", "delete", "garbage", "hide", "remove" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + Trash = 0xF1F8, + + /// + /// The Font Awesome "trash-can" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "trash can", "delete", "garbage", "hide", "remove", "trash-o" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing", "Humanitarian" })] + TrashAlt = 0xF2ED, + + /// + /// The Font Awesome "trash-arrow-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "trash arrow up", "back", "control z", "delete", "garbage", "hide", "oops", "remove", "undo" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + TrashRestore = 0xF829, + + /// + /// The Font Awesome "trash-can-arrow-up" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "trash can arrow up", "back", "control z", "delete", "garbage", "hide", "oops", "remove", "undo" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + TrashRestoreAlt = 0xF82A, + + /// + /// The Font Awesome "tree" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "bark", "evergreen tree", "fall", "flora", "forest", "nature", "plant", "seasonal", "tree" })] + [FontAwesomeCategoriesAttribute(new[] { "Camping", "Maps", "Nature" })] + Tree = 0xF1BB, + + /// + /// The Font Awesome "tree-city" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tree city", "building", "city", "urban" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Travel + Hotel" })] + TreeCity = 0xE587, + + /// + /// The Font Awesome "trello" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "trello", "atlassian" })] + Trello = 0xF181, + + /// + /// The Font Awesome "tripadvisor" icon unicode character. + /// + [Obsolete] + Tripadvisor = 0xF262, + + /// + /// The Font Awesome "trophy" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "achievement", "award", "cup", "game", "prize", "trophy", "winner" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Shopping" })] + Trophy = 0xF091, + + /// + /// The Font Awesome "trowel" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "trowel", "build", "construction", "tool" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Humanitarian" })] + Trowel = 0xE589, + + /// + /// The Font Awesome "trowel-bricks" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "trowel bricks", "build", "construction", "reconstruction", "tool" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Humanitarian" })] + TrowelBricks = 0xE58A, + + /// + /// The Font Awesome "truck" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "black truck", "cargo", "delivery", "delivery truck", "shipping", "truck", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Humanitarian", "Logistics", "Maps", "Shopping", "Transportation" })] + Truck = 0xF0D1, + + /// + /// The Font Awesome "truck-arrow-right" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck arrow right", "access", "fast", "shipping", "transport" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Transportation" })] + TruckArrowRight = 0xE58B, + + /// + /// The Font Awesome "truck-droplet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck droplet", "thirst", "truck", "water", "water supply" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Transportation" })] + TruckDroplet = 0xE58C, + + /// + /// The Font Awesome "truck-field" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck field", "supplies", "truck" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Humanitarian", "Logistics", "Transportation" })] + TruckField = 0xE58D, + + /// + /// The Font Awesome "truck-field-un" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck field un", "supplies", "truck", "united nations" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Humanitarian", "Logistics", "Transportation" })] + TruckFieldUn = 0xE58E, + + /// + /// The Font Awesome "truck-front" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck front", "shuttle", "truck", "van" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Transportation" })] + TruckFront = 0xE2B7, + + /// + /// The Font Awesome "truck-ramp-box" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck ramp box", "box", "cargo", "delivery", "inventory", "moving", "rental", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Moving" })] + TruckLoading = 0xF4DE, + + /// + /// The Font Awesome "truck-monster" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck monster", "offroad", "vehicle", "wheel" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Transportation" })] + TruckMonster = 0xF63B, + + /// + /// The Font Awesome "truck-moving" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck moving", "cargo", "inventory", "rental", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Moving" })] + TruckMoving = 0xF4DF, + + /// + /// The Font Awesome "truck-pickup" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck pickup", "cargo", "pick-up", "pickup", "pickup truck", "truck", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Automotive", "Construction", "Transportation" })] + TruckPickup = 0xF63C, + + /// + /// The Font Awesome "truck-plane" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "truck plane", "airplane", "plane", "transportation", "truck", "vehicle" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Logistics", "Transportation" })] + TruckPlane = 0xE58F, + + /// + /// The Font Awesome "shirt" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "clothing", "fashion", "garment", "shirt", "short sleeve", "t-shirt", "tshirt" })] + [FontAwesomeCategoriesAttribute(new[] { "Clothing + Fashion", "Humanitarian", "Shopping" })] + Tshirt = 0xF553, + + /// + /// The Font Awesome "tty" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tty", "communication", "deaf", "telephone", "teletypewriter", "text" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Communication", "Maps" })] + Tty = 0xF1E4, + + /// + /// The Font Awesome "tumblr" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "tumblr" })] + Tumblr = 0xF173, + + /// + /// The Font Awesome "square-tumblr" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square tumblr" })] + TumblrSquare = 0xF174, + + /// + /// The Font Awesome "turkish-lira-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "turkish lira sign", "turkish lira sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + TurkishLiraSign = 0xE2BB, + + /// + /// The Font Awesome "tv" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "tv", "computer", "display", "monitor", "television" })] + [FontAwesomeCategoriesAttribute(new[] { "Devices + Hardware", "Film + Video", "Household", "Travel + Hotel" })] + Tv = 0xF26C, + + /// + /// The Font Awesome "twitch" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "twitch" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + Twitch = 0xF1E8, + + /// + /// The Font Awesome "twitter" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "twitter", "social network", "tweet" })] + Twitter = 0xF099, + + /// + /// The Font Awesome "square-twitter" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square twitter", "social network", "tweet" })] + TwitterSquare = 0xF081, + + /// + /// The Font Awesome "typo3" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "typo3" })] + Typo3 = 0xF42B, + + /// + /// The Font Awesome "uber" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "uber" })] + Uber = 0xF402, + + /// + /// The Font Awesome "ubuntu" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ubuntu", "linux", "operating system", "os" })] + Ubuntu = 0xF7DF, + + /// + /// The Font Awesome "uikit" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "uikit" })] + Uikit = 0xF403, + + /// + /// The Font Awesome "umbraco" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "umbraco" })] + Umbraco = 0xF8E8, + + /// + /// The Font Awesome "umbrella" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "umbrella", "protection", "rain", "storm", "wet" })] + [FontAwesomeCategoriesAttribute(new[] { "Maps", "Weather" })] + Umbrella = 0xF0E9, + + /// + /// The Font Awesome "umbrella-beach" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "umbrella beach", "beach", "beach with umbrella", "protection", "recreation", "sand", "shade", "summer", "sun", "umbrella" })] + [FontAwesomeCategoriesAttribute(new[] { "Travel + Hotel" })] + UmbrellaBeach = 0xF5CA, + + /// + /// The Font Awesome "underline" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "underline", "edit", "emphasis", "format", "text", "writing" })] + [FontAwesomeCategoriesAttribute(new[] { "Text Formatting" })] + Underline = 0xF0CD, + + /// + /// The Font Awesome "arrow-rotate-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "arrow rotate left", "anticlockwise open circle arrow", "back", "control z", "exchange", "oops", "return", "rotate", "swap" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Media Playback" })] + Undo = 0xF0E2, + + /// + /// The Font Awesome "rotate-left" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "rotate left", "back", "control z", "exchange", "oops", "return", "swap" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Media Playback" })] + UndoAlt = 0xF2EA, + + /// + /// The Font Awesome "uniregistry" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "uniregistry" })] + Uniregistry = 0xF404, + + /// + /// The Font Awesome "unity" icon unicode character. + /// + [Obsolete] + Unity = 0xF949, + + /// + /// The Font Awesome "universal-access" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "universal access", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility" })] + UniversalAccess = 0xF29A, + + /// + /// The Font Awesome "building-columns" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "building columns", "bank", "building", "college", "education", "institution", "museum", "students" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Maps" })] + University = 0xF19C, + + /// + /// The Font Awesome "link-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "link slash", "attachment", "chain", "chain-broken", "remove" })] + [FontAwesomeCategoriesAttribute(new[] { "Editing" })] + Unlink = 0xF127, + + /// + /// The Font Awesome "unlock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "admin", "lock", "open", "password", "private", "protect", "unlock", "unlocked" })] + [FontAwesomeCategoriesAttribute(new[] { "Security" })] + Unlock = 0xF09C, + + /// + /// The Font Awesome "unlock-keyhole" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "unlock keyhole", "admin", "lock", "password", "private", "protect" })] + [FontAwesomeCategoriesAttribute(new[] { "Security" })] + UnlockAlt = 0xF13E, + + /// + /// The Font Awesome "untappd" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "untappd" })] + Untappd = 0xF405, + + /// + /// The Font Awesome "upload" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "upload", "hard drive", "import", "publish" })] + [FontAwesomeCategoriesAttribute(new[] { "Arrows", "Devices + Hardware" })] + Upload = 0xF093, + + /// + /// The Font Awesome "ups" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ups", "united parcel service", "package", "shipping" })] + Ups = 0xF7E0, + + /// + /// The Font Awesome "usb" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "usb" })] + Usb = 0xF287, + + /// + /// The Font Awesome "user" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user", "adult", "bust", "bust in silhouette", "gender-neutral", "person", "profile", "silhouette", "unspecified gender", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Social", "Users + People" })] + User = 0xF007, + + /// + /// The Font Awesome "user-large" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user large", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserAlt = 0xF406, + + /// + /// The Font Awesome "user-large-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user large slash", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserAltSlash = 0xF4FA, + + /// + /// The Font Awesome "user-astronaut" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user astronaut", "avatar", "clothing", "cosmonaut", "nasa", "space", "suit" })] + [FontAwesomeCategoriesAttribute(new[] { "Astronomy", "Science Fiction", "Users + People" })] + UserAstronaut = 0xF4FB, + + /// + /// The Font Awesome "user-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user check", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserCheck = 0xF4FC, + + /// + /// The Font Awesome "circle-user" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "circle user", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Social", "Users + People" })] + UserCircle = 0xF2BD, + + /// + /// The Font Awesome "user-clock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user clock", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserClock = 0xF4FD, + + /// + /// The Font Awesome "user-gear" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user gear", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserCog = 0xF4FE, + + /// + /// The Font Awesome "user-pen" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user pen", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserEdit = 0xF4FF, + + /// + /// The Font Awesome "user-group" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user group", "bust", "busts in silhouette", "silhouette", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Social", "Users + People" })] + UserFriends = 0xF500, + + /// + /// The Font Awesome "user-graduate" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user graduate", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Education", "Users + People" })] + UserGraduate = 0xF501, + + /// + /// The Font Awesome "user-injured" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user injured", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + UserInjured = 0xF728, + + /// + /// The Font Awesome "user-lock" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user lock", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Security", "Users + People" })] + UserLock = 0xF502, + + /// + /// The Font Awesome "user-doctor" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user doctor", "covid-19", "health", "job", "medical", "nurse", "occupation", "physician", "profile", "surgeon", "worker" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health", "Users + People" })] + UserMd = 0xF0F0, + + /// + /// The Font Awesome "user-minus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user minus", "delete", "negative", "remove" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserMinus = 0xF503, + + /// + /// The Font Awesome "user-ninja" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user ninja", "assassin", "avatar", "dangerous", "deadly", "fighter", "hidden", "ninja", "sneaky", "stealth" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserNinja = 0xF504, + + /// + /// The Font Awesome "user-nurse" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user nurse", "covid-19", "doctor", "health", "md", "medical", "midwife", "physician", "practitioner", "surgeon", "worker" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Users + People" })] + UserNurse = 0xF82F, + + /// + /// The Font Awesome "user-plus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user plus", "add", "avatar", "positive", "sign up", "signup", "team" })] + [FontAwesomeCategoriesAttribute(new[] { "Social", "Users + People" })] + UserPlus = 0xF234, + + /// + /// The Font Awesome "users" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "users", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Social", "Users + People" })] + Users = 0xF0C0, + + /// + /// The Font Awesome "users-between-lines" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "users between lines", "covered", "group", "people" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + UsersBetweenLines = 0xE591, + + /// + /// The Font Awesome "users-gear" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "users gear", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UsersCog = 0xF509, + + /// + /// The Font Awesome "user-secret" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user secret", "detective", "sleuth", "spy", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding", "Security", "Users + People" })] + UserSecret = 0xF21B, + + /// + /// The Font Awesome "user-shield" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user shield", "protect", "safety" })] + [FontAwesomeCategoriesAttribute(new[] { "Security", "Users + People" })] + UserShield = 0xF505, + + /// + /// The Font Awesome "user-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user slash", "ban", "delete", "remove" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserSlash = 0xF506, + + /// + /// The Font Awesome "users-line" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "users line", "group", "need", "people" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + UsersLine = 0xE592, + + /// + /// The Font Awesome "users-rays" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "users rays", "affected", "focused", "group", "people" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + UsersRays = 0xE593, + + /// + /// The Font Awesome "users-rectangle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "users rectangle", "focus", "group", "people", "reached" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + UsersRectangle = 0xE594, + + /// + /// The Font Awesome "users-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "users slash", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UsersSlash = 0xE073, + + /// + /// The Font Awesome "users-viewfinder" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "users viewfinder", "focus", "group", "people", "targeted" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Users + People" })] + UsersViewfinder = 0xE595, + + /// + /// The Font Awesome "user-tag" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user tag", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserTag = 0xF507, + + /// + /// The Font Awesome "user-tie" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user tie", "avatar", "business", "clothing", "formal", "professional", "suit" })] + [FontAwesomeCategoriesAttribute(new[] { "Clothing + Fashion", "Users + People" })] + UserTie = 0xF508, + + /// + /// The Font Awesome "user-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "user xmark", "archive", "delete", "remove", "x" })] + [FontAwesomeCategoriesAttribute(new[] { "Users + People" })] + UserTimes = 0xF235, + + /// + /// The Font Awesome "usps" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "usps", "american", "package", "shipping", "usa" })] + Usps = 0xF7E1, + + /// + /// The Font Awesome "ussunnah" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "ussunnah" })] + Ussunnah = 0xF407, + + /// + /// The Font Awesome "utensils" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "utensils", "cooking", "cutlery", "dining", "dinner", "eat", "food", "fork", "fork and knife", "knife", "restaurant" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Maps", "Travel + Hotel" })] + Utensils = 0xF2E7, + + /// + /// The Font Awesome "spoon" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "cutlery", "dining", "scoop", "silverware", "spoon", "tableware" })] + [FontAwesomeCategoriesAttribute(new[] { "Household", "Maps" })] + UtensilSpoon = 0xF2E5, + + /// + /// The Font Awesome "vaadin" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "vaadin" })] + Vaadin = 0xF408, + + /// + /// The Font Awesome "vault" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "vault", "bank", "important", "lock", "money", "safe" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Money", "Security" })] + Vault = 0xE2C5, + + /// + /// The Font Awesome "vector-square" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "vector square", "anchors", "lines", "object", "render", "shape" })] + [FontAwesomeCategoriesAttribute(new[] { "Design" })] + VectorSquare = 0xF5CB, + + /// + /// The Font Awesome "venus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "venus", "female", "female sign", "gender", "woman" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + Venus = 0xF221, + + /// + /// The Font Awesome "venus-double" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "venus double", "doubled female sign", "female", "gender", "lesbian" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + VenusDouble = 0xF226, + + /// + /// The Font Awesome "venus-mars" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "venus mars", "interlocked female and male sign", "female", "gender", "heterosexual", "male" })] + [FontAwesomeCategoriesAttribute(new[] { "Genders" })] + VenusMars = 0xF228, + + /// + /// The Font Awesome "vest" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "vest", "biker", "fashion", "style" })] + [FontAwesomeCategoriesAttribute(new[] { "Clothing + Fashion", "Maps" })] + Vest = 0xE085, + + /// + /// The Font Awesome "vest-patches" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "vest patches", "biker", "fashion", "style" })] + [FontAwesomeCategoriesAttribute(new[] { "Clothing + Fashion", "Maps" })] + VestPatches = 0xE086, + + /// + /// The Font Awesome "viacoin" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "viacoin" })] + Viacoin = 0xF237, + + /// + /// The Font Awesome "viadeo" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "viadeo" })] + Viadeo = 0xF2A9, + + /// + /// The Font Awesome "square-viadeo" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square viadeo" })] + ViadeoSquare = 0xF2AA, + + /// + /// The Font Awesome "vial" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "vial", "ampule", "chemist", "chemistry", "experiment", "lab", "sample", "science", "test", "test tube" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Science" })] + Vial = 0xF492, + + /// + /// The Font Awesome "vial-circle-check" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "vial circle check", "ampule", "chemist", "chemistry", "not affected", "ok", "okay", "success", "test tube", "tube", "vaccine" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health", "Science" })] + VialCircleCheck = 0xE596, + + /// + /// The Font Awesome "vials" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "vials", "ampule", "experiment", "lab", "sample", "science", "test", "test tube" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health", "Science" })] + Vials = 0xF493, + + /// + /// The Font Awesome "vial-virus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "vial virus", "ampule", "coronavirus", "covid-19", "flue", "infection", "lab", "laboratory", "pandemic", "test", "test tube", "vaccine" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health", "Science" })] + VialVirus = 0xE597, + + /// + /// The Font Awesome "viber" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "viber" })] + Viber = 0xF409, + + /// + /// The Font Awesome "video" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "video", "camera", "film", "movie", "record", "video-camera" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Film + Video", "Social" })] + Video = 0xF03D, + + /// + /// The Font Awesome "video-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "video slash", "add", "create", "film", "new", "positive", "record", "video" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Film + Video" })] + VideoSlash = 0xF4E2, + + /// + /// The Font Awesome "vihara" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "vihara", "buddhism", "buddhist", "building", "monastery" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Humanitarian", "Religion" })] + Vihara = 0xF6A7, + + /// + /// The Font Awesome "vimeo" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "vimeo" })] + Vimeo = 0xF40A, + + /// + /// The Font Awesome "square-vimeo" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square vimeo" })] + VimeoSquare = 0xF194, + + /// + /// The Font Awesome "vimeo-v" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "vimeo v", "vimeo" })] + VimeoV = 0xF27D, + + /// + /// The Font Awesome "vine" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "vine" })] + Vine = 0xF1CA, + + /// + /// The Font Awesome "virus" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "virus", "bug", "coronavirus", "covid-19", "flu", "health", "infection", "pandemic", "sick", "vaccine", "viral" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + Virus = 0xE074, + + /// + /// The Font Awesome "virus-covid" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "virus covid", "bug", "covid-19", "flu", "health", "infection", "pandemic", "vaccine", "viral", "virus" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Medical + Health" })] + VirusCovid = 0xE4A8, + + /// + /// The Font Awesome "virus-covid-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "virus covid slash", "bug", "covid-19", "flu", "health", "infection", "pandemic", "vaccine", "viral", "virus" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + VirusCovidSlash = 0xE4A9, + + /// + /// The Font Awesome "viruses" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "viruses", "bugs", "coronavirus", "covid-19", "flu", "health", "infection", "multiply", "pandemic", "sick", "spread", "vaccine", "viral" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Viruses = 0xE076, + + /// + /// The Font Awesome "virus-slash" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "virus slash", "bug", "coronavirus", "covid-19", "cure", "eliminate", "flu", "health", "infection", "pandemic", "sick", "vaccine", "viral" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + VirusSlash = 0xE075, + + /// + /// The Font Awesome "vk" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "vk" })] + Vk = 0xF189, + + /// + /// The Font Awesome "vnv" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "vnv" })] + Vnv = 0xF40B, + + /// + /// The Font Awesome "voicemail" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "voicemail", "answer", "inbox", "message", "phone" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication" })] + Voicemail = 0xF897, + + /// + /// The Font Awesome "volcano" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "caldera", "eruption", "lava", "magma", "mountain", "smoke", "volcano" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Nature", "Weather" })] + Volcano = 0xF770, + + /// + /// The Font Awesome "volleyball" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "ball", "beach", "game", "olympics", "sport", "volleyball" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + VolleyballBall = 0xF45F, + + /// + /// The Font Awesome "volume-low" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "volume low", "audio", "lower", "music", "quieter", "soft", "sound", "speaker", "speaker low volume" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback", "Music + Audio" })] + VolumeDown = 0xF027, + + /// + /// The Font Awesome "volume-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "volume xmark", "audio", "music", "quiet", "sound", "speaker" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback", "Music + Audio" })] + VolumeMute = 0xF6A9, + + /// + /// The Font Awesome "volume-off" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "volume off", "audio", "ban", "music", "mute", "quiet", "silent", "sound" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback", "Music + Audio" })] + VolumeOff = 0xF026, + + /// + /// The Font Awesome "volume-high" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "volume high", "audio", "higher", "loud", "louder", "music", "sound", "speaker", "speaker high volume" })] + [FontAwesomeCategoriesAttribute(new[] { "Media Playback", "Music + Audio" })] + VolumeUp = 0xF028, + + /// + /// The Font Awesome "check-to-slot" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "check to slot", "accept", "cast", "election", "politics", "positive", "voting", "yes" })] + [FontAwesomeCategoriesAttribute(new[] { "Political" })] + VoteYea = 0xF772, + + /// + /// The Font Awesome "vr-cardboard" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "vr cardboard", "3d", "augment", "google", "reality", "virtual" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + VrCardboard = 0xF729, + + /// + /// The Font Awesome "vuejs" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "vuejs" })] + Vuejs = 0xF41F, + + /// + /// The Font Awesome "walkie-talkie" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "walkie talkie", "communication", "copy", "intercom", "over", "portable", "radio", "two way radio" })] + [FontAwesomeCategoriesAttribute(new[] { "Communication", "Devices + Hardware", "Humanitarian" })] + WalkieTalkie = 0xF8EF, + + /// + /// The Font Awesome "person-walking" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "person walking", "crosswalk", "exercise", "hike", "move", "person walking", "walk", "walking" })] + [FontAwesomeCategoriesAttribute(new[] { "Humanitarian", "Sports + Fitness", "Users + People" })] + Walking = 0xF554, + + /// + /// The Font Awesome "wallet" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wallet", "billfold", "cash", "currency", "money" })] + [FontAwesomeCategoriesAttribute(new[] { "Business", "Money" })] + Wallet = 0xF555, + + /// + /// The Font Awesome "wand-magic-sparkles" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wand magic sparkles", "auto", "magic", "magic wand", "trick", "witch", "wizard" })] + [FontAwesomeCategoriesAttribute(new[] { "Design", "Editing" })] + WandMagicSparkles = 0xE2CA, + + /// + /// The Font Awesome "wand-sparkles" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wand sparkles", "autocomplete", "automatic", "fantasy", "halloween", "holiday", "magic", "weapon", "witch", "wizard" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming", "Halloween" })] + WandSparkles = 0xF72B, + + /// + /// The Font Awesome "warehouse" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "warehouse", "building", "capacity", "garage", "inventory", "storage" })] + [FontAwesomeCategoriesAttribute(new[] { "Buildings", "Logistics" })] + Warehouse = 0xF494, + + /// + /// The Font Awesome "water" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "water", "lake", "liquid", "ocean", "sea", "swim", "wet" })] + [FontAwesomeCategoriesAttribute(new[] { "Energy", "Maritime", "Nature", "Weather" })] + Water = 0xF773, + + /// + /// The Font Awesome "wave-square" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wave square", "frequency", "pulse", "signal" })] + [FontAwesomeCategoriesAttribute(new[] { "Mathematics" })] + WaveSquare = 0xF83E, + + /// + /// The Font Awesome "waze" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "waze" })] + Waze = 0xF83F, + + /// + /// The Font Awesome "weebly" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "weebly" })] + Weebly = 0xF5CC, + + /// + /// The Font Awesome "weibo" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "weibo" })] + Weibo = 0xF18A, + + /// + /// The Font Awesome "weight-scale" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "weight scale", "health", "measurement", "scale", "weight" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + Weight = 0xF496, + + /// + /// The Font Awesome "weight-hanging" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "weight hanging", "anvil", "heavy", "measurement" })] + [FontAwesomeCategoriesAttribute(new[] { "Sports + Fitness" })] + WeightHanging = 0xF5CD, + + /// + /// The Font Awesome "weixin" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "weixin" })] + Weixin = 0xF1D7, + + /// + /// The Font Awesome "whatsapp" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "whatsapp" })] + Whatsapp = 0xF232, + + /// + /// The Font Awesome "square-whatsapp" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square whatsapp" })] + WhatsappSquare = 0xF40C, + + /// + /// The Font Awesome "wheat-awn" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wheat awn", "agriculture", "autumn", "fall", "farming", "grain" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Humanitarian" })] + WheatAwn = 0xE2CD, + + /// + /// The Font Awesome "wheat-awn-circle-exclamation" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wheat awn circle exclamation", "affected", "famine", "food", "gluten", "hunger", "starve", "straw" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Food + Beverage", "Humanitarian" })] + WheatAwnCircleExclamation = 0xE598, + + /// + /// The Font Awesome "wheelchair" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wheelchair", "users-people" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Maps", "Medical + Health", "Transportation", "Travel + Hotel", "Users + People" })] + Wheelchair = 0xF193, + + /// + /// The Font Awesome "wheelchair-move" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wheelchair move", "access", "handicap", "impairment", "physical", "wheelchair symbol" })] + [FontAwesomeCategoriesAttribute(new[] { "Accessibility", "Humanitarian", "Maps", "Medical + Health", "Transportation", "Travel + Hotel", "Users + People" })] + WheelchairMove = 0xE2CE, + + /// + /// The Font Awesome "whmcs" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "whmcs" })] + Whmcs = 0xF40D, + + /// + /// The Font Awesome "wifi" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wifi", "connection", "hotspot", "internet", "network", "wireless" })] + [FontAwesomeCategoriesAttribute(new[] { "Connectivity", "Humanitarian", "Maps", "Toggle", "Travel + Hotel" })] + Wifi = 0xF1EB, + + /// + /// The Font Awesome "wikipedia-w" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "wikipedia w" })] + WikipediaW = 0xF266, + + /// + /// The Font Awesome "wind" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wind", "air", "blow", "breeze", "fall", "seasonal", "weather" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Energy", "Humanitarian", "Nature", "Weather" })] + Wind = 0xF72E, + + /// + /// The Font Awesome "rectangle-xmark" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "rectangle xmark", "browser", "cancel", "computer", "development" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + WindowClose = 0xF410, + + /// + /// The Font Awesome "window-maximize" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "window maximize", "maximize", "browser", "computer", "development", "expand" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + WindowMaximize = 0xF2D0, + + /// + /// The Font Awesome "window-minimize" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "window minimize", "minimize", "browser", "collapse", "computer", "development" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + WindowMinimize = 0xF2D1, + + /// + /// The Font Awesome "window-restore" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "window restore", "browser", "computer", "development" })] + [FontAwesomeCategoriesAttribute(new[] { "Coding" })] + WindowRestore = 0xF2D2, + + /// + /// The Font Awesome "windows" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "windows", "microsoft", "operating system", "os" })] + Windows = 0xF17A, + + /// + /// The Font Awesome "wine-bottle" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wine bottle", "alcohol", "beverage", "cabernet", "drink", "glass", "grapes", "merlot", "sauvignon" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage" })] + WineBottle = 0xF72F, + + /// + /// The Font Awesome "wine-glass" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wine glass", "alcohol", "bar", "beverage", "cabernet", "drink", "glass", "grapes", "merlot", "sauvignon", "wine", "wine glass" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Maps", "Moving", "Travel + Hotel" })] + WineGlass = 0xF4E3, + + /// + /// The Font Awesome "wine-glass-empty" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "wine glass empty", "alcohol", "beverage", "cabernet", "drink", "grapes", "merlot", "sauvignon" })] + [FontAwesomeCategoriesAttribute(new[] { "Food + Beverage", "Travel + Hotel" })] + WineGlassAlt = 0xF5CE, + + /// + /// The Font Awesome "wix" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "wix" })] + Wix = 0xF5CF, + + /// + /// The Font Awesome "wizards-of-the-coast" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "wizards of the coast", "dungeons & dragons", "d&d", "dnd", "fantasy", "game", "gaming", "tabletop" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + WizardsOfTheCoast = 0xF730, + + /// + /// The Font Awesome "wolf-pack-battalion" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "wolf pack battalion" })] + WolfPackBattalion = 0xF514, + + /// + /// The Font Awesome "won-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "won sign", "won sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + WonSign = 0xF159, + + /// + /// The Font Awesome "wordpress" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "wordpress" })] + Wordpress = 0xF19A, + + /// + /// The Font Awesome "wordpress-simple" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "wordpress simple" })] + WordpressSimple = 0xF411, + + /// + /// The Font Awesome "worm" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "dirt", "garden", "worm", "wriggle" })] + [FontAwesomeCategoriesAttribute(new[] { "Animals", "Disaster + Crisis", "Humanitarian", "Nature" })] + Worm = 0xE599, + + /// + /// The Font Awesome "wpbeginner" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "wpbeginner" })] + Wpbeginner = 0xF297, + + /// + /// The Font Awesome "wpexplorer" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "wpexplorer" })] + Wpexplorer = 0xF2DE, + + /// + /// The Font Awesome "wpforms" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "wpforms" })] + Wpforms = 0xF298, + + /// + /// The Font Awesome "wpressr" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "wpressr", "rendact" })] + Wpressr = 0xF3E4, + + /// + /// The Font Awesome "wrench" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "construction", "fix", "mechanic", "plumbing", "settings", "spanner", "tool", "update", "wrench" })] + [FontAwesomeCategoriesAttribute(new[] { "Construction", "Maps" })] + Wrench = 0xF0AD, + + /// + /// The Font Awesome "xbox" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "xbox" })] + [FontAwesomeCategoriesAttribute(new[] { "Gaming" })] + Xbox = 0xF412, + + /// + /// The Font Awesome "xing" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "xing" })] + Xing = 0xF168, + + /// + /// The Font Awesome "square-xing" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square xing" })] + XingSquare = 0xF169, + + /// + /// The Font Awesome "xmarks-lines" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "xmarks lines", "barricade", "barrier", "fence", "poison", "roadblock" })] + [FontAwesomeCategoriesAttribute(new[] { "Disaster + Crisis", "Humanitarian", "Logistics" })] + XmarksLines = 0xE59A, + + /// + /// The Font Awesome "x-ray" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "x ray", "health", "medical", "radiological images", "radiology", "skeleton" })] + [FontAwesomeCategoriesAttribute(new[] { "Medical + Health" })] + XRay = 0xF497, + + /// + /// The Font Awesome "yahoo" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "yahoo" })] + Yahoo = 0xF19E, + + /// + /// The Font Awesome "yammer" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "yammer" })] + Yammer = 0xF840, + + /// + /// The Font Awesome "yandex" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "yandex" })] + Yandex = 0xF413, + + /// + /// The Font Awesome "yandex-international" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "yandex international" })] + YandexInternational = 0xF414, + + /// + /// The Font Awesome "yarn" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "yarn" })] + Yarn = 0xF7E3, + + /// + /// The Font Awesome "y-combinator" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "y combinator" })] + YCombinator = 0xF23B, + + /// + /// The Font Awesome "yelp" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "yelp" })] + Yelp = 0xF1E9, + + /// + /// The Font Awesome "yen-sign" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "yen sign", "yen sign", "currency" })] + [FontAwesomeCategoriesAttribute(new[] { "Money" })] + YenSign = 0xF157, + + /// + /// The Font Awesome "yin-yang" icon unicode character. + /// + [FontAwesomeSearchTerms(new[] { "yin yang", "daoism", "opposites", "religion", "tao", "taoism", "taoist", "yang", "yin", "yin yang" })] + [FontAwesomeCategoriesAttribute(new[] { "Religion", "Spinners" })] + YinYang = 0xF6AD, + + /// + /// The Font Awesome "yoast" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "yoast" })] + Yoast = 0xF2B1, + + /// + /// The Font Awesome "youtube" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "youtube", "film", "video", "youtube-play", "youtube-square" })] + [FontAwesomeCategoriesAttribute(new[] { "Film + Video" })] + Youtube = 0xF167, + + /// + /// The Font Awesome "square-youtube" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "square youtube" })] + YoutubeSquare = 0xF431, + + /// + /// The Font Awesome "zhihu" icon unicode character. + /// + [Obsolete] + [FontAwesomeSearchTerms(new[] { "zhihu" })] + Zhihu = 0xF63F, + +} diff --git a/Dalamud/Interface/FontAwesome/FontAwesomeSearchTermsAttribute.cs b/Dalamud/Interface/FontAwesome/FontAwesomeSearchTermsAttribute.cs new file mode 100644 index 000000000..6ee1c75cd --- /dev/null +++ b/Dalamud/Interface/FontAwesome/FontAwesomeSearchTermsAttribute.cs @@ -0,0 +1,20 @@ +using System; + +namespace Dalamud.Interface; + +/// +/// Set search terms associated with a font awesome icon. +/// +public class FontAwesomeSearchTermsAttribute : Attribute +{ + /// + /// Initializes a new instance of the class. + /// + /// search terms for enum member. + public FontAwesomeSearchTermsAttribute(string[] searchTerms) => this.SearchTerms = searchTerms; + + /// + /// Gets or sets search terms. + /// + public string[] SearchTerms { get; set; } +} diff --git a/Dalamud/Interface/FontAwesomeExtensions.cs b/Dalamud/Interface/FontAwesomeExtensions.cs deleted file mode 100644 index bd5738cc3..000000000 --- a/Dalamud/Interface/FontAwesomeExtensions.cs +++ /dev/null @@ -1,29 +0,0 @@ -// Font-Awesome - Version 5.0.9 - -namespace Dalamud.Interface; - -/// -/// Extension methods for . -/// -public static class FontAwesomeExtensions -{ - /// - /// Convert the FontAwesomeIcon to a type. - /// - /// The icon to convert. - /// The converted icon. - public static char ToIconChar(this FontAwesomeIcon icon) - { - return (char)icon; - } - - /// - /// Conver the FontAwesomeIcon to a type. - /// - /// The icon to convert. - /// The converted icon. - public static string ToIconString(this FontAwesomeIcon icon) - { - return string.Empty + (char)icon; - } -} diff --git a/Dalamud/Interface/FontAwesomeIcon.cs b/Dalamud/Interface/FontAwesomeIcon.cs deleted file mode 100644 index 3c056bf23..000000000 --- a/Dalamud/Interface/FontAwesomeIcon.cs +++ /dev/null @@ -1,7049 +0,0 @@ -// Font-Awesome - Version 5.0.9 - -namespace Dalamud.Interface; - -/// -/// Font Awesome unicode characters for use with the font. -/// -public enum FontAwesomeIcon -{ - /// - /// No icon. - /// - None = 0, - - /// - /// The Font Awesome "500px" icon unicode character. - /// - _500Px = 0xF26E, - - /// - /// The Font Awesome "accessible-icon" icon unicode character. - /// - AccessibleIcon = 0xF368, - - /// - /// The Font Awesome "accusoft" icon unicode character. - /// - Accusoft = 0xF369, - - /// - /// The Font Awesome "acquisitions-incorporated" icon unicode character. - /// - AcquisitionsIncorporated = 0xF6AF, - - /// - /// The Font Awesome "ad" icon unicode character. - /// - Ad = 0xF641, - - /// - /// The Font Awesome "address-book" icon unicode character. - /// - AddressBook = 0xF2B9, - - /// - /// The Font Awesome "address-card" icon unicode character. - /// - AddressCard = 0xF2BB, - - /// - /// The Font Awesome "adjust" icon unicode character. - /// - Adjust = 0xF042, - - /// - /// The Font Awesome "adn" icon unicode character. - /// - Adn = 0xF170, - - /// - /// The Font Awesome "adobe" icon unicode character. - /// - Adobe = 0xF778, - - /// - /// The Font Awesome "adversal" icon unicode character. - /// - Adversal = 0xF36A, - - /// - /// The Font Awesome "affiliatetheme" icon unicode character. - /// - Affiliatetheme = 0xF36B, - - /// - /// The Font Awesome "airbnb" icon unicode character. - /// - Airbnb = 0xF834, - - /// - /// The Font Awesome "air-freshener" icon unicode character. - /// - AirFreshener = 0xF5D0, - - /// - /// The Font Awesome "algolia" icon unicode character. - /// - Algolia = 0xF36C, - - /// - /// The Font Awesome "align-center" icon unicode character. - /// - AlignCenter = 0xF037, - - /// - /// The Font Awesome "align-justify" icon unicode character. - /// - AlignJustify = 0xF039, - - /// - /// The Font Awesome "align-left" icon unicode character. - /// - AlignLeft = 0xF036, - - /// - /// The Font Awesome "align-right" icon unicode character. - /// - AlignRight = 0xF038, - - /// - /// The Font Awesome "alipay" icon unicode character. - /// - Alipay = 0xF642, - - /// - /// The Font Awesome "allergies" icon unicode character. - /// - Allergies = 0xF461, - - /// - /// The Font Awesome "amazon" icon unicode character. - /// - Amazon = 0xF270, - - /// - /// The Font Awesome "amazon-pay" icon unicode character. - /// - AmazonPay = 0xF42C, - - /// - /// The Font Awesome "ambulance" icon unicode character. - /// - Ambulance = 0xF0F9, - - /// - /// The Font Awesome "american-sign-language-interpreting" icon unicode character. - /// - AmericanSignLanguageInterpreting = 0xF2A3, - - /// - /// The Font Awesome "amilia" icon unicode character. - /// - Amilia = 0xF36D, - - /// - /// The Font Awesome "anchor" icon unicode character. - /// - Anchor = 0xF13D, - - /// - /// The Font Awesome "android" icon unicode character. - /// - Android = 0xF17B, - - /// - /// The Font Awesome "angellist" icon unicode character. - /// - Angellist = 0xF209, - - /// - /// The Font Awesome "angle-double-down" icon unicode character. - /// - AngleDoubleDown = 0xF103, - - /// - /// The Font Awesome "angle-double-left" icon unicode character. - /// - AngleDoubleLeft = 0xF100, - - /// - /// The Font Awesome "angle-double-right" icon unicode character. - /// - AngleDoubleRight = 0xF101, - - /// - /// The Font Awesome "angle-double-up" icon unicode character. - /// - AngleDoubleUp = 0xF102, - - /// - /// The Font Awesome "angle-down" icon unicode character. - /// - AngleDown = 0xF107, - - /// - /// The Font Awesome "angle-left" icon unicode character. - /// - AngleLeft = 0xF104, - - /// - /// The Font Awesome "angle-right" icon unicode character. - /// - AngleRight = 0xF105, - - /// - /// The Font Awesome "angle-up" icon unicode character. - /// - AngleUp = 0xF106, - - /// - /// The Font Awesome "angry" icon unicode character. - /// - Angry = 0xF556, - - /// - /// The Font Awesome "angrycreative" icon unicode character. - /// - Angrycreative = 0xF36E, - - /// - /// The Font Awesome "angular" icon unicode character. - /// - Angular = 0xF420, - - /// - /// The Font Awesome "ankh" icon unicode character. - /// - Ankh = 0xF644, - - /// - /// The Font Awesome "apper" icon unicode character. - /// - Apper = 0xF371, - - /// - /// The Font Awesome "apple" icon unicode character. - /// - Apple = 0xF179, - - /// - /// The Font Awesome "apple-alt" icon unicode character. - /// - AppleAlt = 0xF5D1, - - /// - /// The Font Awesome "apple-pay" icon unicode character. - /// - ApplePay = 0xF415, - - /// - /// The Font Awesome "app-store" icon unicode character. - /// - AppStore = 0xF36F, - - /// - /// The Font Awesome "app-store-ios" icon unicode character. - /// - AppStoreIos = 0xF370, - - /// - /// The Font Awesome "archive" icon unicode character. - /// - Archive = 0xF187, - - /// - /// The Font Awesome "archway" icon unicode character. - /// - Archway = 0xF557, - - /// - /// The Font Awesome "arrow-alt-circle-down" icon unicode character. - /// - ArrowAltCircleDown = 0xF358, - - /// - /// The Font Awesome "arrow-alt-circle-left" icon unicode character. - /// - ArrowAltCircleLeft = 0xF359, - - /// - /// The Font Awesome "arrow-alt-circle-right" icon unicode character. - /// - ArrowAltCircleRight = 0xF35A, - - /// - /// The Font Awesome "arrow-alt-circle-up" icon unicode character. - /// - ArrowAltCircleUp = 0xF35B, - - /// - /// The Font Awesome "arrow-circle-down" icon unicode character. - /// - ArrowCircleDown = 0xF0AB, - - /// - /// The Font Awesome "arrow-circle-left" icon unicode character. - /// - ArrowCircleLeft = 0xF0A8, - - /// - /// The Font Awesome "arrow-circle-right" icon unicode character. - /// - ArrowCircleRight = 0xF0A9, - - /// - /// The Font Awesome "arrow-circle-up" icon unicode character. - /// - ArrowCircleUp = 0xF0AA, - - /// - /// The Font Awesome "arrow-down" icon unicode character. - /// - ArrowDown = 0xF063, - - /// - /// The Font Awesome "arrow-left" icon unicode character. - /// - ArrowLeft = 0xF060, - - /// - /// The Font Awesome "arrow-right" icon unicode character. - /// - ArrowRight = 0xF061, - - /// - /// The Font Awesome "arrows-alt" icon unicode character. - /// - ArrowsAlt = 0xF0B2, - - /// - /// The Font Awesome "arrows-alt-h" icon unicode character. - /// - ArrowsAltH = 0xF337, - - /// - /// The Font Awesome "arrows-alt-v" icon unicode character. - /// - ArrowsAltV = 0xF338, - - /// - /// The Font Awesome "arrow-up" icon unicode character. - /// - ArrowUp = 0xF062, - - /// - /// The Font Awesome "artstation" icon unicode character. - /// - Artstation = 0xF77A, - - /// - /// The Font Awesome "assistive-listening-systems" icon unicode character. - /// - AssistiveListeningSystems = 0xF2A2, - - /// - /// The Font Awesome "asterisk" icon unicode character. - /// - Asterisk = 0xF069, - - /// - /// The Font Awesome "asymmetrik" icon unicode character. - /// - Asymmetrik = 0xF372, - - /// - /// The Font Awesome "at" icon unicode character. - /// - At = 0xF1FA, - - /// - /// The Font Awesome "atlas" icon unicode character. - /// - Atlas = 0xF558, - - /// - /// The Font Awesome "atlassian" icon unicode character. - /// - Atlassian = 0xF77B, - - /// - /// The Font Awesome "atom" icon unicode character. - /// - Atom = 0xF5D2, - - /// - /// The Font Awesome "audible" icon unicode character. - /// - Audible = 0xF373, - - /// - /// The Font Awesome "audio-description" icon unicode character. - /// - AudioDescription = 0xF29E, - - /// - /// The Font Awesome "autoprefixer" icon unicode character. - /// - Autoprefixer = 0xF41C, - - /// - /// The Font Awesome "avianex" icon unicode character. - /// - Avianex = 0xF374, - - /// - /// The Font Awesome "aviato" icon unicode character. - /// - Aviato = 0xF421, - - /// - /// The Font Awesome "award" icon unicode character. - /// - Award = 0xF559, - - /// - /// The Font Awesome "aws" icon unicode character. - /// - Aws = 0xF375, - - /// - /// The Font Awesome "baby" icon unicode character. - /// - Baby = 0xF77C, - - /// - /// The Font Awesome "baby-carriage" icon unicode character. - /// - BabyCarriage = 0xF77D, - - /// - /// The Font Awesome "backspace" icon unicode character. - /// - Backspace = 0xF55A, - - /// - /// The Font Awesome "backward" icon unicode character. - /// - Backward = 0xF04A, - - /// - /// The Font Awesome "bacon" icon unicode character. - /// - Bacon = 0xF7E5, - - /// - /// The Font Awesome "bahai" icon unicode character. - /// - Bahai = 0xF666, - - /// - /// The Font Awesome "balance-scale" icon unicode character. - /// - BalanceScale = 0xF24E, - - /// - /// The Font Awesome "balance-scale-left" icon unicode character. - /// - BalanceScaleLeft = 0xF515, - - /// - /// The Font Awesome "balance-scale-right" icon unicode character. - /// - BalanceScaleRight = 0xF516, - - /// - /// The Font Awesome "ban" icon unicode character. - /// - Ban = 0xF05E, - - /// - /// The Font Awesome "band-aid" icon unicode character. - /// - BandAid = 0xF462, - - /// - /// The Font Awesome "bandcamp" icon unicode character. - /// - Bandcamp = 0xF2D5, - - /// - /// The Font Awesome "barcode" icon unicode character. - /// - Barcode = 0xF02A, - - /// - /// The Font Awesome "bars" icon unicode character. - /// - Bars = 0xF0C9, - - /// - /// The Font Awesome "baseball-ball" icon unicode character. - /// - BaseballBall = 0xF433, - - /// - /// The Font Awesome "basketball-ball" icon unicode character. - /// - BasketballBall = 0xF434, - - /// - /// The Font Awesome "bath" icon unicode character. - /// - Bath = 0xF2CD, - - /// - /// The Font Awesome "battery-empty" icon unicode character. - /// - BatteryEmpty = 0xF244, - - /// - /// The Font Awesome "battery-full" icon unicode character. - /// - BatteryFull = 0xF240, - - /// - /// The Font Awesome "battery-half" icon unicode character. - /// - BatteryHalf = 0xF242, - - /// - /// The Font Awesome "battery-quarter" icon unicode character. - /// - BatteryQuarter = 0xF243, - - /// - /// The Font Awesome "battery-three-quarters" icon unicode character. - /// - BatteryThreeQuarters = 0xF241, - - /// - /// The Font Awesome "battle-net" icon unicode character. - /// - BattleNet = 0xF835, - - /// - /// The Font Awesome "bed" icon unicode character. - /// - Bed = 0xF236, - - /// - /// The Font Awesome "beer" icon unicode character. - /// - Beer = 0xF0FC, - - /// - /// The Font Awesome "behance" icon unicode character. - /// - Behance = 0xF1B4, - - /// - /// The Font Awesome "behance-square" icon unicode character. - /// - BehanceSquare = 0xF1B5, - - /// - /// The Font Awesome "bell" icon unicode character. - /// - Bell = 0xF0F3, - - /// - /// The Font Awesome "bell-slash" icon unicode character. - /// - BellSlash = 0xF1F6, - - /// - /// The Font Awesome "bezier-curve" icon unicode character. - /// - BezierCurve = 0xF55B, - - /// - /// The Font Awesome "bible" icon unicode character. - /// - Bible = 0xF647, - - /// - /// The Font Awesome "bicycle" icon unicode character. - /// - Bicycle = 0xF206, - - /// - /// The Font Awesome "biking" icon unicode character. - /// - Biking = 0xF84A, - - /// - /// The Font Awesome "bimobject" icon unicode character. - /// - Bimobject = 0xF378, - - /// - /// The Font Awesome "binoculars" icon unicode character. - /// - Binoculars = 0xF1E5, - - /// - /// The Font Awesome "biohazard" icon unicode character. - /// - Biohazard = 0xF780, - - /// - /// The Font Awesome "birthday-cake" icon unicode character. - /// - BirthdayCake = 0xF1FD, - - /// - /// The Font Awesome "bitbucket" icon unicode character. - /// - Bitbucket = 0xF171, - - /// - /// The Font Awesome "bitcoin" icon unicode character. - /// - Bitcoin = 0xF379, - - /// - /// The Font Awesome "bity" icon unicode character. - /// - Bity = 0xF37A, - - /// - /// The Font Awesome "blackberry" icon unicode character. - /// - Blackberry = 0xF37B, - - /// - /// The Font Awesome "black-tie" icon unicode character. - /// - BlackTie = 0xF27E, - - /// - /// The Font Awesome "blender" icon unicode character. - /// - Blender = 0xF517, - - /// - /// The Font Awesome "blender-phone" icon unicode character. - /// - BlenderPhone = 0xF6B6, - - /// - /// The Font Awesome "blind" icon unicode character. - /// - Blind = 0xF29D, - - /// - /// The Font Awesome "blog" icon unicode character. - /// - Blog = 0xF781, - - /// - /// The Font Awesome "blogger" icon unicode character. - /// - Blogger = 0xF37C, - - /// - /// The Font Awesome "blogger-b" icon unicode character. - /// - BloggerB = 0xF37D, - - /// - /// The Font Awesome "bluetooth" icon unicode character. - /// - Bluetooth = 0xF293, - - /// - /// The Font Awesome "bluetooth-b" icon unicode character. - /// - BluetoothB = 0xF294, - - /// - /// The Font Awesome "bold" icon unicode character. - /// - Bold = 0xF032, - - /// - /// The Font Awesome "bolt" icon unicode character. - /// - Bolt = 0xF0E7, - - /// - /// The Font Awesome "bomb" icon unicode character. - /// - Bomb = 0xF1E2, - - /// - /// The Font Awesome "bone" icon unicode character. - /// - Bone = 0xF5D7, - - /// - /// The Font Awesome "bong" icon unicode character. - /// - Bong = 0xF55C, - - /// - /// The Font Awesome "book" icon unicode character. - /// - Book = 0xF02D, - - /// - /// The Font Awesome "book-dead" icon unicode character. - /// - BookDead = 0xF6B7, - - /// - /// The Font Awesome "bookmark" icon unicode character. - /// - Bookmark = 0xF02E, - - /// - /// The Font Awesome "book-medical" icon unicode character. - /// - BookMedical = 0xF7E6, - - /// - /// The Font Awesome "book-open" icon unicode character. - /// - BookOpen = 0xF518, - - /// - /// The Font Awesome "book-reader" icon unicode character. - /// - BookReader = 0xF5DA, - - /// - /// The Font Awesome "bootstrap" icon unicode character. - /// - Bootstrap = 0xF836, - - /// - /// The Font Awesome "border-all" icon unicode character. - /// - BorderAll = 0xF84C, - - /// - /// The Font Awesome "border-none" icon unicode character. - /// - BorderNone = 0xF850, - - /// - /// The Font Awesome "border-style" icon unicode character. - /// - BorderStyle = 0xF853, - - /// - /// The Font Awesome "bowling-ball" icon unicode character. - /// - BowlingBall = 0xF436, - - /// - /// The Font Awesome "box" icon unicode character. - /// - Box = 0xF466, - - /// - /// The Font Awesome "boxes" icon unicode character. - /// - Boxes = 0xF468, - - /// - /// The Font Awesome "box-open" icon unicode character. - /// - BoxOpen = 0xF49E, - - /// - /// The Font Awesome "braille" icon unicode character. - /// - Braille = 0xF2A1, - - /// - /// The Font Awesome "brain" icon unicode character. - /// - Brain = 0xF5DC, - - /// - /// The Font Awesome "bread-slice" icon unicode character. - /// - BreadSlice = 0xF7EC, - - /// - /// The Font Awesome "briefcase" icon unicode character. - /// - Briefcase = 0xF0B1, - - /// - /// The Font Awesome "briefcase-medical" icon unicode character. - /// - BriefcaseMedical = 0xF469, - - /// - /// The Font Awesome "broadcast-tower" icon unicode character. - /// - BroadcastTower = 0xF519, - - /// - /// The Font Awesome "broom" icon unicode character. - /// - Broom = 0xF51A, - - /// - /// The Font Awesome "brush" icon unicode character. - /// - Brush = 0xF55D, - - /// - /// The Font Awesome "btc" icon unicode character. - /// - Btc = 0xF15A, - - /// - /// The Font Awesome "buffer" icon unicode character. - /// - Buffer = 0xF837, - - /// - /// The Font Awesome "bug" icon unicode character. - /// - Bug = 0xF188, - - /// - /// The Font Awesome "building" icon unicode character. - /// - Building = 0xF1AD, - - /// - /// The Font Awesome "bullhorn" icon unicode character. - /// - Bullhorn = 0xF0A1, - - /// - /// The Font Awesome "bullseye" icon unicode character. - /// - Bullseye = 0xF140, - - /// - /// The Font Awesome "burn" icon unicode character. - /// - Burn = 0xF46A, - - /// - /// The Font Awesome "buromobelexperte" icon unicode character. - /// - Buromobelexperte = 0xF37F, - - /// - /// The Font Awesome "bus" icon unicode character. - /// - Bus = 0xF207, - - /// - /// The Font Awesome "bus-alt" icon unicode character. - /// - BusAlt = 0xF55E, - - /// - /// The Font Awesome "business-time" icon unicode character. - /// - BusinessTime = 0xF64A, - - /// - /// The Font Awesome "buy-n-large" icon unicode character. - /// - BuyNLarge = 0xF8A6, - - /// - /// The Font Awesome "buysellads" icon unicode character. - /// - Buysellads = 0xF20D, - - /// - /// The Font Awesome "calculator" icon unicode character. - /// - Calculator = 0xF1EC, - - /// - /// The Font Awesome "calendar" icon unicode character. - /// - Calendar = 0xF133, - - /// - /// The Font Awesome "calendar-alt" icon unicode character. - /// - CalendarAlt = 0xF073, - - /// - /// The Font Awesome "calendar-check" icon unicode character. - /// - CalendarCheck = 0xF274, - - /// - /// The Font Awesome "calendar-day" icon unicode character. - /// - CalendarDay = 0xF783, - - /// - /// The Font Awesome "calendar-minus" icon unicode character. - /// - CalendarMinus = 0xF272, - - /// - /// The Font Awesome "calendar-plus" icon unicode character. - /// - CalendarPlus = 0xF271, - - /// - /// The Font Awesome "calendar-times" icon unicode character. - /// - CalendarTimes = 0xF273, - - /// - /// The Font Awesome "calendar-week" icon unicode character. - /// - CalendarWeek = 0xF784, - - /// - /// The Font Awesome "camera" icon unicode character. - /// - Camera = 0xF030, - - /// - /// The Font Awesome "camera-retro" icon unicode character. - /// - CameraRetro = 0xF083, - - /// - /// The Font Awesome "campground" icon unicode character. - /// - Campground = 0xF6BB, - - /// - /// The Font Awesome "canadian-maple-leaf" icon unicode character. - /// - CanadianMapleLeaf = 0xF785, - - /// - /// The Font Awesome "candy-cane" icon unicode character. - /// - CandyCane = 0xF786, - - /// - /// The Font Awesome "cannabis" icon unicode character. - /// - Cannabis = 0xF55F, - - /// - /// The Font Awesome "capsules" icon unicode character. - /// - Capsules = 0xF46B, - - /// - /// The Font Awesome "car" icon unicode character. - /// - Car = 0xF1B9, - - /// - /// The Font Awesome "car-alt" icon unicode character. - /// - CarAlt = 0xF5DE, - - /// - /// The Font Awesome "caravan" icon unicode character. - /// - Caravan = 0xF8FF, - - /// - /// The Font Awesome "car-battery" icon unicode character. - /// - CarBattery = 0xF5DF, - - /// - /// The Font Awesome "car-crash" icon unicode character. - /// - CarCrash = 0xF5E1, - - /// - /// The Font Awesome "caret-down" icon unicode character. - /// - CaretDown = 0xF0D7, - - /// - /// The Font Awesome "caret-left" icon unicode character. - /// - CaretLeft = 0xF0D9, - - /// - /// The Font Awesome "caret-right" icon unicode character. - /// - CaretRight = 0xF0DA, - - /// - /// The Font Awesome "caret-square-down" icon unicode character. - /// - CaretSquareDown = 0xF150, - - /// - /// The Font Awesome "caret-square-left" icon unicode character. - /// - CaretSquareLeft = 0xF191, - - /// - /// The Font Awesome "caret-square-right" icon unicode character. - /// - CaretSquareRight = 0xF152, - - /// - /// The Font Awesome "caret-square-up" icon unicode character. - /// - CaretSquareUp = 0xF151, - - /// - /// The Font Awesome "caret-up" icon unicode character. - /// - CaretUp = 0xF0D8, - - /// - /// The Font Awesome "carrot" icon unicode character. - /// - Carrot = 0xF787, - - /// - /// The Font Awesome "car-side" icon unicode character. - /// - CarSide = 0xF5E4, - - /// - /// The Font Awesome "cart-arrow-down" icon unicode character. - /// - CartArrowDown = 0xF218, - - /// - /// The Font Awesome "cart-plus" icon unicode character. - /// - CartPlus = 0xF217, - - /// - /// The Font Awesome "cash-register" icon unicode character. - /// - CashRegister = 0xF788, - - /// - /// The Font Awesome "cat" icon unicode character. - /// - Cat = 0xF6BE, - - /// - /// The Font Awesome "cc-amazon-pay" icon unicode character. - /// - CcAmazonPay = 0xF42D, - - /// - /// The Font Awesome "cc-amex" icon unicode character. - /// - CcAmex = 0xF1F3, - - /// - /// The Font Awesome "cc-apple-pay" icon unicode character. - /// - CcApplePay = 0xF416, - - /// - /// The Font Awesome "cc-diners-club" icon unicode character. - /// - CcDinersClub = 0xF24C, - - /// - /// The Font Awesome "cc-discover" icon unicode character. - /// - CcDiscover = 0xF1F2, - - /// - /// The Font Awesome "cc-jcb" icon unicode character. - /// - CcJcb = 0xF24B, - - /// - /// The Font Awesome "cc-mastercard" icon unicode character. - /// - CcMastercard = 0xF1F1, - - /// - /// The Font Awesome "cc-paypal" icon unicode character. - /// - CcPaypal = 0xF1F4, - - /// - /// The Font Awesome "cc-stripe" icon unicode character. - /// - CcStripe = 0xF1F5, - - /// - /// The Font Awesome "cc-visa" icon unicode character. - /// - CcVisa = 0xF1F0, - - /// - /// The Font Awesome "centercode" icon unicode character. - /// - Centercode = 0xF380, - - /// - /// The Font Awesome "centos" icon unicode character. - /// - Centos = 0xF789, - - /// - /// The Font Awesome "certificate" icon unicode character. - /// - Certificate = 0xF0A3, - - /// - /// The Font Awesome "chair" icon unicode character. - /// - Chair = 0xF6C0, - - /// - /// The Font Awesome "chalkboard" icon unicode character. - /// - Chalkboard = 0xF51B, - - /// - /// The Font Awesome "chalkboard-teacher" icon unicode character. - /// - ChalkboardTeacher = 0xF51C, - - /// - /// The Font Awesome "charging-station" icon unicode character. - /// - ChargingStation = 0xF5E7, - - /// - /// The Font Awesome "chart-area" icon unicode character. - /// - ChartArea = 0xF1FE, - - /// - /// The Font Awesome "chart-bar" icon unicode character. - /// - ChartBar = 0xF080, - - /// - /// The Font Awesome "chart-line" icon unicode character. - /// - ChartLine = 0xF201, - - /// - /// The Font Awesome "chart-pie" icon unicode character. - /// - ChartPie = 0xF200, - - /// - /// The Font Awesome "check" icon unicode character. - /// - Check = 0xF00C, - - /// - /// The Font Awesome "check-circle" icon unicode character. - /// - CheckCircle = 0xF058, - - /// - /// The Font Awesome "check-double" icon unicode character. - /// - CheckDouble = 0xF560, - - /// - /// The Font Awesome "check-square" icon unicode character. - /// - CheckSquare = 0xF14A, - - /// - /// The Font Awesome "cheese" icon unicode character. - /// - Cheese = 0xF7EF, - - /// - /// The Font Awesome "chess" icon unicode character. - /// - Chess = 0xF439, - - /// - /// The Font Awesome "chess-bishop" icon unicode character. - /// - ChessBishop = 0xF43A, - - /// - /// The Font Awesome "chess-board" icon unicode character. - /// - ChessBoard = 0xF43C, - - /// - /// The Font Awesome "chess-king" icon unicode character. - /// - ChessKing = 0xF43F, - - /// - /// The Font Awesome "chess-knight" icon unicode character. - /// - ChessKnight = 0xF441, - - /// - /// The Font Awesome "chess-pawn" icon unicode character. - /// - ChessPawn = 0xF443, - - /// - /// The Font Awesome "chess-queen" icon unicode character. - /// - ChessQueen = 0xF445, - - /// - /// The Font Awesome "chess-rook" icon unicode character. - /// - ChessRook = 0xF447, - - /// - /// The Font Awesome "chevron-circle-down" icon unicode character. - /// - ChevronCircleDown = 0xF13A, - - /// - /// The Font Awesome "chevron-circle-left" icon unicode character. - /// - ChevronCircleLeft = 0xF137, - - /// - /// The Font Awesome "chevron-circle-right" icon unicode character. - /// - ChevronCircleRight = 0xF138, - - /// - /// The Font Awesome "chevron-circle-up" icon unicode character. - /// - ChevronCircleUp = 0xF139, - - /// - /// The Font Awesome "chevron-down" icon unicode character. - /// - ChevronDown = 0xF078, - - /// - /// The Font Awesome "chevron-left" icon unicode character. - /// - ChevronLeft = 0xF053, - - /// - /// The Font Awesome "chevron-right" icon unicode character. - /// - ChevronRight = 0xF054, - - /// - /// The Font Awesome "chevron-up" icon unicode character. - /// - ChevronUp = 0xF077, - - /// - /// The Font Awesome "child" icon unicode character. - /// - Child = 0xF1AE, - - /// - /// The Font Awesome "chrome" icon unicode character. - /// - Chrome = 0xF268, - - /// - /// The Font Awesome "chromecast" icon unicode character. - /// - Chromecast = 0xF838, - - /// - /// The Font Awesome "church" icon unicode character. - /// - Church = 0xF51D, - - /// - /// The Font Awesome "circle" icon unicode character. - /// - Circle = 0xF111, - - /// - /// The Font Awesome "circle-notch" icon unicode character. - /// - CircleNotch = 0xF1CE, - - /// - /// The Font Awesome "city" icon unicode character. - /// - City = 0xF64F, - - /// - /// The Font Awesome "clinic-medical" icon unicode character. - /// - ClinicMedical = 0xF7F2, - - /// - /// The Font Awesome "clipboard" icon unicode character. - /// - Clipboard = 0xF328, - - /// - /// The Font Awesome "clipboard-check" icon unicode character. - /// - ClipboardCheck = 0xF46C, - - /// - /// The Font Awesome "clipboard-list" icon unicode character. - /// - ClipboardList = 0xF46D, - - /// - /// The Font Awesome "clock" icon unicode character. - /// - Clock = 0xF017, - - /// - /// The Font Awesome "clone" icon unicode character. - /// - Clone = 0xF24D, - - /// - /// The Font Awesome "closed-captioning" icon unicode character. - /// - ClosedCaptioning = 0xF20A, - - /// - /// The Font Awesome "cloud" icon unicode character. - /// - Cloud = 0xF0C2, - - /// - /// The Font Awesome "cloud-download-alt" icon unicode character. - /// - CloudDownloadAlt = 0xF381, - - /// - /// The Font Awesome "cloud-meatball" icon unicode character. - /// - CloudMeatball = 0xF73B, - - /// - /// The Font Awesome "cloud-moon" icon unicode character. - /// - CloudMoon = 0xF6C3, - - /// - /// The Font Awesome "cloud-moon-rain" icon unicode character. - /// - CloudMoonRain = 0xF73C, - - /// - /// The Font Awesome "cloud-rain" icon unicode character. - /// - CloudRain = 0xF73D, - - /// - /// The Font Awesome "cloudscale" icon unicode character. - /// - Cloudscale = 0xF383, - - /// - /// The Font Awesome "cloud-showers-heavy" icon unicode character. - /// - CloudShowersHeavy = 0xF740, - - /// - /// The Font Awesome "cloudsmith" icon unicode character. - /// - Cloudsmith = 0xF384, - - /// - /// The Font Awesome "cloud-sun" icon unicode character. - /// - CloudSun = 0xF6C4, - - /// - /// The Font Awesome "cloud-sun-rain" icon unicode character. - /// - CloudSunRain = 0xF743, - - /// - /// The Font Awesome "cloud-upload-alt" icon unicode character. - /// - CloudUploadAlt = 0xF382, - - /// - /// The Font Awesome "cloudversify" icon unicode character. - /// - Cloudversify = 0xF385, - - /// - /// The Font Awesome "cocktail" icon unicode character. - /// - Cocktail = 0xF561, - - /// - /// The Font Awesome "code" icon unicode character. - /// - Code = 0xF121, - - /// - /// The Font Awesome "code-branch" icon unicode character. - /// - CodeBranch = 0xF126, - - /// - /// The Font Awesome "codepen" icon unicode character. - /// - Codepen = 0xF1CB, - - /// - /// The Font Awesome "codiepie" icon unicode character. - /// - Codiepie = 0xF284, - - /// - /// The Font Awesome "coffee" icon unicode character. - /// - Coffee = 0xF0F4, - - /// - /// The Font Awesome "cog" icon unicode character. - /// - Cog = 0xF013, - - /// - /// The Font Awesome "cogs" icon unicode character. - /// - Cogs = 0xF085, - - /// - /// The Font Awesome "coins" icon unicode character. - /// - Coins = 0xF51E, - - /// - /// The Font Awesome "columns" icon unicode character. - /// - Columns = 0xF0DB, - - /// - /// The Font Awesome "comment" icon unicode character. - /// - Comment = 0xF075, - - /// - /// The Font Awesome "comment-alt" icon unicode character. - /// - CommentAlt = 0xF27A, - - /// - /// The Font Awesome "comment-dollar" icon unicode character. - /// - CommentDollar = 0xF651, - - /// - /// The Font Awesome "comment-dots" icon unicode character. - /// - CommentDots = 0xF4AD, - - /// - /// The Font Awesome "comment-medical" icon unicode character. - /// - CommentMedical = 0xF7F5, - - /// - /// The Font Awesome "comments" icon unicode character. - /// - Comments = 0xF086, - - /// - /// The Font Awesome "comments-dollar" icon unicode character. - /// - CommentsDollar = 0xF653, - - /// - /// The Font Awesome "comment-slash" icon unicode character. - /// - CommentSlash = 0xF4B3, - - /// - /// The Font Awesome "compact-disc" icon unicode character. - /// - CompactDisc = 0xF51F, - - /// - /// The Font Awesome "compass" icon unicode character. - /// - Compass = 0xF14E, - - /// - /// The Font Awesome "compress" icon unicode character. - /// - Compress = 0xF066, - - /// - /// The Font Awesome "compress-alt" icon unicode character. - /// - CompressAlt = 0xF422, - - /// - /// The Font Awesome "compress-arrows-alt" icon unicode character. - /// - CompressArrowsAlt = 0xF78C, - - /// - /// The Font Awesome "concierge-bell" icon unicode character. - /// - ConciergeBell = 0xF562, - - /// - /// The Font Awesome "confluence" icon unicode character. - /// - Confluence = 0xF78D, - - /// - /// The Font Awesome "connectdevelop" icon unicode character. - /// - Connectdevelop = 0xF20E, - - /// - /// The Font Awesome "contao" icon unicode character. - /// - Contao = 0xF26D, - - /// - /// The Font Awesome "cookie" icon unicode character. - /// - Cookie = 0xF563, - - /// - /// The Font Awesome "cookie-bite" icon unicode character. - /// - CookieBite = 0xF564, - - /// - /// The Font Awesome "copy" icon unicode character. - /// - Copy = 0xF0C5, - - /// - /// The Font Awesome "copyright" icon unicode character. - /// - Copyright = 0xF1F9, - - /// - /// The Font Awesome "cotton-bureau" icon unicode character. - /// - CottonBureau = 0xF89E, - - /// - /// The Font Awesome "couch" icon unicode character. - /// - Couch = 0xF4B8, - - /// - /// The Font Awesome "cpanel" icon unicode character. - /// - Cpanel = 0xF388, - - /// - /// The Font Awesome "creative-commons" icon unicode character. - /// - CreativeCommons = 0xF25E, - - /// - /// The Font Awesome "creative-commons-by" icon unicode character. - /// - CreativeCommonsBy = 0xF4E7, - - /// - /// The Font Awesome "creative-commons-nc" icon unicode character. - /// - CreativeCommonsNc = 0xF4E8, - - /// - /// The Font Awesome "creative-commons-nc-eu" icon unicode character. - /// - CreativeCommonsNcEu = 0xF4E9, - - /// - /// The Font Awesome "creative-commons-nc-jp" icon unicode character. - /// - CreativeCommonsNcJp = 0xF4EA, - - /// - /// The Font Awesome "creative-commons-nd" icon unicode character. - /// - CreativeCommonsNd = 0xF4EB, - - /// - /// The Font Awesome "creative-commons-pd" icon unicode character. - /// - CreativeCommonsPd = 0xF4EC, - - /// - /// The Font Awesome "creative-commons-pd-alt" icon unicode character. - /// - CreativeCommonsPdAlt = 0xF4ED, - - /// - /// The Font Awesome "creative-commons-remix" icon unicode character. - /// - CreativeCommonsRemix = 0xF4EE, - - /// - /// The Font Awesome "creative-commons-sa" icon unicode character. - /// - CreativeCommonsSa = 0xF4EF, - - /// - /// The Font Awesome "creative-commons-sampling" icon unicode character. - /// - CreativeCommonsSampling = 0xF4F0, - - /// - /// The Font Awesome "creative-commons-sampling-plus" icon unicode character. - /// - CreativeCommonsSamplingPlus = 0xF4F1, - - /// - /// The Font Awesome "creative-commons-share" icon unicode character. - /// - CreativeCommonsShare = 0xF4F2, - - /// - /// The Font Awesome "creative-commons-zero" icon unicode character. - /// - CreativeCommonsZero = 0xF4F3, - - /// - /// The Font Awesome "credit-card" icon unicode character. - /// - CreditCard = 0xF09D, - - /// - /// The Font Awesome "critical-role" icon unicode character. - /// - CriticalRole = 0xF6C9, - - /// - /// The Font Awesome "crop" icon unicode character. - /// - Crop = 0xF125, - - /// - /// The Font Awesome "crop-alt" icon unicode character. - /// - CropAlt = 0xF565, - - /// - /// The Font Awesome "cross" icon unicode character. - /// - Cross = 0xF654, - - /// - /// The Font Awesome "crosshairs" icon unicode character. - /// - Crosshairs = 0xF05B, - - /// - /// The Font Awesome "crow" icon unicode character. - /// - Crow = 0xF520, - - /// - /// The Font Awesome "crown" icon unicode character. - /// - Crown = 0xF521, - - /// - /// The Font Awesome "crutch" icon unicode character. - /// - Crutch = 0xF7F7, - - /// - /// The Font Awesome "css3" icon unicode character. - /// - Css3 = 0xF13C, - - /// - /// The Font Awesome "css3-alt" icon unicode character. - /// - Css3Alt = 0xF38B, - - /// - /// The Font Awesome "cube" icon unicode character. - /// - Cube = 0xF1B2, - - /// - /// The Font Awesome "cubes" icon unicode character. - /// - Cubes = 0xF1B3, - - /// - /// The Font Awesome "cut" icon unicode character. - /// - Cut = 0xF0C4, - - /// - /// The Font Awesome "cuttlefish" icon unicode character. - /// - Cuttlefish = 0xF38C, - - /// - /// The Font Awesome "dailymotion" icon unicode character. - /// - Dailymotion = 0xF952, - - /// - /// The Font Awesome "d-and-d" icon unicode character. - /// - DAndD = 0xF38D, - - /// - /// The Font Awesome "d-and-d-beyond" icon unicode character. - /// - DAndDBeyond = 0xF6CA, - - /// - /// The Font Awesome "dashcube" icon unicode character. - /// - Dashcube = 0xF210, - - /// - /// The Font Awesome "database" icon unicode character. - /// - Database = 0xF1C0, - - /// - /// The Font Awesome "deaf" icon unicode character. - /// - Deaf = 0xF2A4, - - /// - /// The Font Awesome "delicious" icon unicode character. - /// - Delicious = 0xF1A5, - - /// - /// The Font Awesome "democrat" icon unicode character. - /// - Democrat = 0xF747, - - /// - /// The Font Awesome "deploydog" icon unicode character. - /// - Deploydog = 0xF38E, - - /// - /// The Font Awesome "deskpro" icon unicode character. - /// - Deskpro = 0xF38F, - - /// - /// The Font Awesome "desktop" icon unicode character. - /// - Desktop = 0xF108, - - /// - /// The Font Awesome "dev" icon unicode character. - /// - Dev = 0xF6CC, - - /// - /// The Font Awesome "deviantart" icon unicode character. - /// - Deviantart = 0xF1BD, - - /// - /// The Font Awesome "dharmachakra" icon unicode character. - /// - Dharmachakra = 0xF655, - - /// - /// The Font Awesome "dhl" icon unicode character. - /// - Dhl = 0xF790, - - /// - /// The Font Awesome "diagnoses" icon unicode character. - /// - Diagnoses = 0xF470, - - /// - /// The Font Awesome "diaspora" icon unicode character. - /// - Diaspora = 0xF791, - - /// - /// The Font Awesome "dice" icon unicode character. - /// - Dice = 0xF522, - - /// - /// The Font Awesome "dice-d20" icon unicode character. - /// - DiceD20 = 0xF6CF, - - /// - /// The Font Awesome "dice-d6" icon unicode character. - /// - DiceD6 = 0xF6D1, - - /// - /// The Font Awesome "dice-five" icon unicode character. - /// - DiceFive = 0xF523, - - /// - /// The Font Awesome "dice-four" icon unicode character. - /// - DiceFour = 0xF524, - - /// - /// The Font Awesome "dice-one" icon unicode character. - /// - DiceOne = 0xF525, - - /// - /// The Font Awesome "dice-six" icon unicode character. - /// - DiceSix = 0xF526, - - /// - /// The Font Awesome "dice-three" icon unicode character. - /// - DiceThree = 0xF527, - - /// - /// The Font Awesome "dice-two" icon unicode character. - /// - DiceTwo = 0xF528, - - /// - /// The Font Awesome "digg" icon unicode character. - /// - Digg = 0xF1A6, - - /// - /// The Font Awesome "digital-ocean" icon unicode character. - /// - DigitalOcean = 0xF391, - - /// - /// The Font Awesome "digital-tachograph" icon unicode character. - /// - DigitalTachograph = 0xF566, - - /// - /// The Font Awesome "directions" icon unicode character. - /// - Directions = 0xF5EB, - - /// - /// The Font Awesome "discord" icon unicode character. - /// - Discord = 0xF392, - - /// - /// The Font Awesome "discourse" icon unicode character. - /// - Discourse = 0xF393, - - /// - /// The Font Awesome "divide" icon unicode character. - /// - Divide = 0xF529, - - /// - /// The Font Awesome "dizzy" icon unicode character. - /// - Dizzy = 0xF567, - - /// - /// The Font Awesome "dna" icon unicode character. - /// - Dna = 0xF471, - - /// - /// The Font Awesome "dochub" icon unicode character. - /// - Dochub = 0xF394, - - /// - /// The Font Awesome "docker" icon unicode character. - /// - Docker = 0xF395, - - /// - /// The Font Awesome "dog" icon unicode character. - /// - Dog = 0xF6D3, - - /// - /// The Font Awesome "dollar-sign" icon unicode character. - /// - DollarSign = 0xF155, - - /// - /// The Font Awesome "dolly" icon unicode character. - /// - Dolly = 0xF472, - - /// - /// The Font Awesome "dolly-flatbed" icon unicode character. - /// - DollyFlatbed = 0xF474, - - /// - /// The Font Awesome "donate" icon unicode character. - /// - Donate = 0xF4B9, - - /// - /// The Font Awesome "door-closed" icon unicode character. - /// - DoorClosed = 0xF52A, - - /// - /// The Font Awesome "door-open" icon unicode character. - /// - DoorOpen = 0xF52B, - - /// - /// The Font Awesome "dot-circle" icon unicode character. - /// - DotCircle = 0xF192, - - /// - /// The Font Awesome "dove" icon unicode character. - /// - Dove = 0xF4BA, - - /// - /// The Font Awesome "download" icon unicode character. - /// - Download = 0xF019, - - /// - /// The Font Awesome "draft2digital" icon unicode character. - /// - Draft2digital = 0xF396, - - /// - /// The Font Awesome "drafting-compass" icon unicode character. - /// - DraftingCompass = 0xF568, - - /// - /// The Font Awesome "dragon" icon unicode character. - /// - Dragon = 0xF6D5, - - /// - /// The Font Awesome "draw-polygon" icon unicode character. - /// - DrawPolygon = 0xF5EE, - - /// - /// The Font Awesome "dribbble" icon unicode character. - /// - Dribbble = 0xF17D, - - /// - /// The Font Awesome "dribbble-square" icon unicode character. - /// - DribbbleSquare = 0xF397, - - /// - /// The Font Awesome "dropbox" icon unicode character. - /// - Dropbox = 0xF16B, - - /// - /// The Font Awesome "drum" icon unicode character. - /// - Drum = 0xF569, - - /// - /// The Font Awesome "drum-steelpan" icon unicode character. - /// - DrumSteelpan = 0xF56A, - - /// - /// The Font Awesome "drumstick-bite" icon unicode character. - /// - DrumstickBite = 0xF6D7, - - /// - /// The Font Awesome "drupal" icon unicode character. - /// - Drupal = 0xF1A9, - - /// - /// The Font Awesome "dumbbell" icon unicode character. - /// - Dumbbell = 0xF44B, - - /// - /// The Font Awesome "dumpster" icon unicode character. - /// - Dumpster = 0xF793, - - /// - /// The Font Awesome "dumpster-fire" icon unicode character. - /// - DumpsterFire = 0xF794, - - /// - /// The Font Awesome "dungeon" icon unicode character. - /// - Dungeon = 0xF6D9, - - /// - /// The Font Awesome "dyalog" icon unicode character. - /// - Dyalog = 0xF399, - - /// - /// The Font Awesome "earlybirds" icon unicode character. - /// - Earlybirds = 0xF39A, - - /// - /// The Font Awesome "ebay" icon unicode character. - /// - Ebay = 0xF4F4, - - /// - /// The Font Awesome "edge" icon unicode character. - /// - Edge = 0xF282, - - /// - /// The Font Awesome "edit" icon unicode character. - /// - Edit = 0xF044, - - /// - /// The Font Awesome "egg" icon unicode character. - /// - Egg = 0xF7FB, - - /// - /// The Font Awesome "eject" icon unicode character. - /// - Eject = 0xF052, - - /// - /// The Font Awesome "elementor" icon unicode character. - /// - Elementor = 0xF430, - - /// - /// The Font Awesome "ellipsis-h" icon unicode character. - /// - EllipsisH = 0xF141, - - /// - /// The Font Awesome "ellipsis-v" icon unicode character. - /// - EllipsisV = 0xF142, - - /// - /// The Font Awesome "ello" icon unicode character. - /// - Ello = 0xF5F1, - - /// - /// The Font Awesome "ember" icon unicode character. - /// - Ember = 0xF423, - - /// - /// The Font Awesome "empire" icon unicode character. - /// - Empire = 0xF1D1, - - /// - /// The Font Awesome "envelope" icon unicode character. - /// - Envelope = 0xF0E0, - - /// - /// The Font Awesome "envelope-open" icon unicode character. - /// - EnvelopeOpen = 0xF2B6, - - /// - /// The Font Awesome "envelope-open-text" icon unicode character. - /// - EnvelopeOpenText = 0xF658, - - /// - /// The Font Awesome "envelope-square" icon unicode character. - /// - EnvelopeSquare = 0xF199, - - /// - /// The Font Awesome "envira" icon unicode character. - /// - Envira = 0xF299, - - /// - /// The Font Awesome "equals" icon unicode character. - /// - Equals = 0xF52C, - - /// - /// The Font Awesome "eraser" icon unicode character. - /// - Eraser = 0xF12D, - - /// - /// The Font Awesome "erlang" icon unicode character. - /// - Erlang = 0xF39D, - - /// - /// The Font Awesome "ethereum" icon unicode character. - /// - Ethereum = 0xF42E, - - /// - /// The Font Awesome "ethernet" icon unicode character. - /// - Ethernet = 0xF796, - - /// - /// The Font Awesome "etsy" icon unicode character. - /// - Etsy = 0xF2D7, - - /// - /// The Font Awesome "euro-sign" icon unicode character. - /// - EuroSign = 0xF153, - - /// - /// The Font Awesome "evernote" icon unicode character. - /// - Evernote = 0xF839, - - /// - /// The Font Awesome "exchange-alt" icon unicode character. - /// - ExchangeAlt = 0xF362, - - /// - /// The Font Awesome "exclamation" icon unicode character. - /// - Exclamation = 0xF12A, - - /// - /// The Font Awesome "exclamation-circle" icon unicode character. - /// - ExclamationCircle = 0xF06A, - - /// - /// The Font Awesome "exclamation-triangle" icon unicode character. - /// - ExclamationTriangle = 0xF071, - - /// - /// The Font Awesome "expand" icon unicode character. - /// - Expand = 0xF065, - - /// - /// The Font Awesome "expand-alt" icon unicode character. - /// - ExpandAlt = 0xF424, - - /// - /// The Font Awesome "expand-arrows-alt" icon unicode character. - /// - ExpandArrowsAlt = 0xF31E, - - /// - /// The Font Awesome "expeditedssl" icon unicode character. - /// - Expeditedssl = 0xF23E, - - /// - /// The Font Awesome "external-link-alt" icon unicode character. - /// - ExternalLinkAlt = 0xF35D, - - /// - /// The Font Awesome "external-link-square-alt" icon unicode character. - /// - ExternalLinkSquareAlt = 0xF360, - - /// - /// The Font Awesome "eye" icon unicode character. - /// - Eye = 0xF06E, - - /// - /// The Font Awesome "eye-dropper" icon unicode character. - /// - EyeDropper = 0xF1FB, - - /// - /// The Font Awesome "eye-slash" icon unicode character. - /// - EyeSlash = 0xF070, - - /// - /// The Font Awesome "facebook" icon unicode character. - /// - Facebook = 0xF09A, - - /// - /// The Font Awesome "facebook-f" icon unicode character. - /// - FacebookF = 0xF39E, - - /// - /// The Font Awesome "facebook-messenger" icon unicode character. - /// - FacebookMessenger = 0xF39F, - - /// - /// The Font Awesome "facebook-square" icon unicode character. - /// - FacebookSquare = 0xF082, - - /// - /// The Font Awesome "fan" icon unicode character. - /// - Fan = 0xF863, - - /// - /// The Font Awesome "fantasy-flight-games" icon unicode character. - /// - FantasyFlightGames = 0xF6DC, - - /// - /// The Font Awesome "fast-backward" icon unicode character. - /// - FastBackward = 0xF049, - - /// - /// The Font Awesome "fast-forward" icon unicode character. - /// - FastForward = 0xF050, - - /// - /// The Font Awesome "fax" icon unicode character. - /// - Fax = 0xF1AC, - - /// - /// The Font Awesome "feather" icon unicode character. - /// - Feather = 0xF52D, - - /// - /// The Font Awesome "feather-alt" icon unicode character. - /// - FeatherAlt = 0xF56B, - - /// - /// The Font Awesome "fedex" icon unicode character. - /// - Fedex = 0xF797, - - /// - /// The Font Awesome "fedora" icon unicode character. - /// - Fedora = 0xF798, - - /// - /// The Font Awesome "female" icon unicode character. - /// - Female = 0xF182, - - /// - /// The Font Awesome "fighter-jet" icon unicode character. - /// - FighterJet = 0xF0FB, - - /// - /// The Font Awesome "figma" icon unicode character. - /// - Figma = 0xF799, - - /// - /// The Font Awesome "file" icon unicode character. - /// - File = 0xF15B, - - /// - /// The Font Awesome "file-alt" icon unicode character. - /// - FileAlt = 0xF15C, - - /// - /// The Font Awesome "file-archive" icon unicode character. - /// - FileArchive = 0xF1C6, - - /// - /// The Font Awesome "file-audio" icon unicode character. - /// - FileAudio = 0xF1C7, - - /// - /// The Font Awesome "file-code" icon unicode character. - /// - FileCode = 0xF1C9, - - /// - /// The Font Awesome "file-contract" icon unicode character. - /// - FileContract = 0xF56C, - - /// - /// The Font Awesome "file-csv" icon unicode character. - /// - FileCsv = 0xF6DD, - - /// - /// The Font Awesome "file-download" icon unicode character. - /// - FileDownload = 0xF56D, - - /// - /// The Font Awesome "file-excel" icon unicode character. - /// - FileExcel = 0xF1C3, - - /// - /// The Font Awesome "file-export" icon unicode character. - /// - FileExport = 0xF56E, - - /// - /// The Font Awesome "file-image" icon unicode character. - /// - FileImage = 0xF1C5, - - /// - /// The Font Awesome "file-import" icon unicode character. - /// - FileImport = 0xF56F, - - /// - /// The Font Awesome "file-invoice" icon unicode character. - /// - FileInvoice = 0xF570, - - /// - /// The Font Awesome "file-invoice-dollar" icon unicode character. - /// - FileInvoiceDollar = 0xF571, - - /// - /// The Font Awesome "file-medical" icon unicode character. - /// - FileMedical = 0xF477, - - /// - /// The Font Awesome "file-medical-alt" icon unicode character. - /// - FileMedicalAlt = 0xF478, - - /// - /// The Font Awesome "file-pdf" icon unicode character. - /// - FilePdf = 0xF1C1, - - /// - /// The Font Awesome "file-powerpoint" icon unicode character. - /// - FilePowerpoint = 0xF1C4, - - /// - /// The Font Awesome "file-prescription" icon unicode character. - /// - FilePrescription = 0xF572, - - /// - /// The Font Awesome "file-signature" icon unicode character. - /// - FileSignature = 0xF573, - - /// - /// The Font Awesome "file-upload" icon unicode character. - /// - FileUpload = 0xF574, - - /// - /// The Font Awesome "file-video" icon unicode character. - /// - FileVideo = 0xF1C8, - - /// - /// The Font Awesome "file-word" icon unicode character. - /// - FileWord = 0xF1C2, - - /// - /// The Font Awesome "fill" icon unicode character. - /// - Fill = 0xF575, - - /// - /// The Font Awesome "fill-drip" icon unicode character. - /// - FillDrip = 0xF576, - - /// - /// The Font Awesome "film" icon unicode character. - /// - Film = 0xF008, - - /// - /// The Font Awesome "filter" icon unicode character. - /// - Filter = 0xF0B0, - - /// - /// The Font Awesome "fingerprint" icon unicode character. - /// - Fingerprint = 0xF577, - - /// - /// The Font Awesome "fire" icon unicode character. - /// - Fire = 0xF06D, - - /// - /// The Font Awesome "fire-alt" icon unicode character. - /// - FireAlt = 0xF7E4, - - /// - /// The Font Awesome "fire-extinguisher" icon unicode character. - /// - FireExtinguisher = 0xF134, - - /// - /// The Font Awesome "firefox" icon unicode character. - /// - Firefox = 0xF269, - - /// - /// The Font Awesome "firefox-browser" icon unicode character. - /// - FirefoxBrowser = 0xF907, - - /// - /// The Font Awesome "first-aid" icon unicode character. - /// - FirstAid = 0xF479, - - /// - /// The Font Awesome "firstdraft" icon unicode character. - /// - Firstdraft = 0xF3A1, - - /// - /// The Font Awesome "first-order" icon unicode character. - /// - FirstOrder = 0xF2B0, - - /// - /// The Font Awesome "first-order-alt" icon unicode character. - /// - FirstOrderAlt = 0xF50A, - - /// - /// The Font Awesome "fish" icon unicode character. - /// - Fish = 0xF578, - - /// - /// The Font Awesome "fist-raised" icon unicode character. - /// - FistRaised = 0xF6DE, - - /// - /// The Font Awesome "flag" icon unicode character. - /// - Flag = 0xF024, - - /// - /// The Font Awesome "flag-checkered" icon unicode character. - /// - FlagCheckered = 0xF11E, - - /// - /// The Font Awesome "flag-usa" icon unicode character. - /// - FlagUsa = 0xF74D, - - /// - /// The Font Awesome "flask" icon unicode character. - /// - Flask = 0xF0C3, - - /// - /// The Font Awesome "flickr" icon unicode character. - /// - Flickr = 0xF16E, - - /// - /// The Font Awesome "flipboard" icon unicode character. - /// - Flipboard = 0xF44D, - - /// - /// The Font Awesome "flushed" icon unicode character. - /// - Flushed = 0xF579, - - /// - /// The Font Awesome "fly" icon unicode character. - /// - Fly = 0xF417, - - /// - /// The Font Awesome "folder" icon unicode character. - /// - Folder = 0xF07B, - - /// - /// The Font Awesome "folder-minus" icon unicode character. - /// - FolderMinus = 0xF65D, - - /// - /// The Font Awesome "folder-open" icon unicode character. - /// - FolderOpen = 0xF07C, - - /// - /// The Font Awesome "folder-plus" icon unicode character. - /// - FolderPlus = 0xF65E, - - /// - /// The Font Awesome "font" icon unicode character. - /// - Font = 0xF031, - - /// - /// The Font Awesome "font-awesome" icon unicode character. - /// - FontAwesome = 0xF2B4, - - /// - /// The Font Awesome "font-awesome-alt" icon unicode character. - /// - FontAwesomeAlt = 0xF35C, - - /// - /// The Font Awesome "font-awesome-flag" icon unicode character. - /// - FontAwesomeFlag = 0xF425, - - /// - /// The Font Awesome "font-awesome-logo-full" icon unicode character. - /// - FontAwesomeLogoFull = 0xF4E6, - - /// - /// The Font Awesome "fonticons" icon unicode character. - /// - Fonticons = 0xF280, - - /// - /// The Font Awesome "fonticons-fi" icon unicode character. - /// - FonticonsFi = 0xF3A2, - - /// - /// The Font Awesome "football-ball" icon unicode character. - /// - FootballBall = 0xF44E, - - /// - /// The Font Awesome "fort-awesome" icon unicode character. - /// - FortAwesome = 0xF286, - - /// - /// The Font Awesome "fort-awesome-alt" icon unicode character. - /// - FortAwesomeAlt = 0xF3A3, - - /// - /// The Font Awesome "forumbee" icon unicode character. - /// - Forumbee = 0xF211, - - /// - /// The Font Awesome "forward" icon unicode character. - /// - Forward = 0xF04E, - - /// - /// The Font Awesome "foursquare" icon unicode character. - /// - Foursquare = 0xF180, - - /// - /// The Font Awesome "freebsd" icon unicode character. - /// - Freebsd = 0xF3A4, - - /// - /// The Font Awesome "free-code-camp" icon unicode character. - /// - FreeCodeCamp = 0xF2C5, - - /// - /// The Font Awesome "frog" icon unicode character. - /// - Frog = 0xF52E, - - /// - /// The Font Awesome "frown" icon unicode character. - /// - Frown = 0xF119, - - /// - /// The Font Awesome "frown-open" icon unicode character. - /// - FrownOpen = 0xF57A, - - /// - /// The Font Awesome "fulcrum" icon unicode character. - /// - Fulcrum = 0xF50B, - - /// - /// The Font Awesome "funnel-dollar" icon unicode character. - /// - FunnelDollar = 0xF662, - - /// - /// The Font Awesome "futbol" icon unicode character. - /// - Futbol = 0xF1E3, - - /// - /// The Font Awesome "galactic-republic" icon unicode character. - /// - GalacticRepublic = 0xF50C, - - /// - /// The Font Awesome "galactic-senate" icon unicode character. - /// - GalacticSenate = 0xF50D, - - /// - /// The Font Awesome "gamepad" icon unicode character. - /// - Gamepad = 0xF11B, - - /// - /// The Font Awesome "gas-pump" icon unicode character. - /// - GasPump = 0xF52F, - - /// - /// The Font Awesome "gavel" icon unicode character. - /// - Gavel = 0xF0E3, - - /// - /// The Font Awesome "gem" icon unicode character. - /// - Gem = 0xF3A5, - - /// - /// The Font Awesome "genderless" icon unicode character. - /// - Genderless = 0xF22D, - - /// - /// The Font Awesome "get-pocket" icon unicode character. - /// - GetPocket = 0xF265, - - /// - /// The Font Awesome "gg" icon unicode character. - /// - Gg = 0xF260, - - /// - /// The Font Awesome "gg-circle" icon unicode character. - /// - GgCircle = 0xF261, - - /// - /// The Font Awesome "ghost" icon unicode character. - /// - Ghost = 0xF6E2, - - /// - /// The Font Awesome "gift" icon unicode character. - /// - Gift = 0xF06B, - - /// - /// The Font Awesome "gifts" icon unicode character. - /// - Gifts = 0xF79C, - - /// - /// The Font Awesome "git" icon unicode character. - /// - Git = 0xF1D3, - - /// - /// The Font Awesome "git-alt" icon unicode character. - /// - GitAlt = 0xF841, - - /// - /// The Font Awesome "github" icon unicode character. - /// - Github = 0xF09B, - - /// - /// The Font Awesome "github-alt" icon unicode character. - /// - GithubAlt = 0xF113, - - /// - /// The Font Awesome "github-square" icon unicode character. - /// - GithubSquare = 0xF092, - - /// - /// The Font Awesome "gitkraken" icon unicode character. - /// - Gitkraken = 0xF3A6, - - /// - /// The Font Awesome "gitlab" icon unicode character. - /// - Gitlab = 0xF296, - - /// - /// The Font Awesome "git-square" icon unicode character. - /// - GitSquare = 0xF1D2, - - /// - /// The Font Awesome "gitter" icon unicode character. - /// - Gitter = 0xF426, - - /// - /// The Font Awesome "glass-cheers" icon unicode character. - /// - GlassCheers = 0xF79F, - - /// - /// The Font Awesome "glasses" icon unicode character. - /// - Glasses = 0xF530, - - /// - /// The Font Awesome "glass-martini" icon unicode character. - /// - GlassMartini = 0xF000, - - /// - /// The Font Awesome "glass-martini-alt" icon unicode character. - /// - GlassMartiniAlt = 0xF57B, - - /// - /// The Font Awesome "glass-whiskey" icon unicode character. - /// - GlassWhiskey = 0xF7A0, - - /// - /// The Font Awesome "glide" icon unicode character. - /// - Glide = 0xF2A5, - - /// - /// The Font Awesome "glide-g" icon unicode character. - /// - GlideG = 0xF2A6, - - /// - /// The Font Awesome "globe" icon unicode character. - /// - Globe = 0xF0AC, - - /// - /// The Font Awesome "globe-africa" icon unicode character. - /// - GlobeAfrica = 0xF57C, - - /// - /// The Font Awesome "globe-americas" icon unicode character. - /// - GlobeAmericas = 0xF57D, - - /// - /// The Font Awesome "globe-asia" icon unicode character. - /// - GlobeAsia = 0xF57E, - - /// - /// The Font Awesome "globe-europe" icon unicode character. - /// - GlobeEurope = 0xF7A2, - - /// - /// The Font Awesome "gofore" icon unicode character. - /// - Gofore = 0xF3A7, - - /// - /// The Font Awesome "golf-ball" icon unicode character. - /// - GolfBall = 0xF450, - - /// - /// The Font Awesome "goodreads" icon unicode character. - /// - Goodreads = 0xF3A8, - - /// - /// The Font Awesome "goodreads-g" icon unicode character. - /// - GoodreadsG = 0xF3A9, - - /// - /// The Font Awesome "google" icon unicode character. - /// - Google = 0xF1A0, - - /// - /// The Font Awesome "google-drive" icon unicode character. - /// - GoogleDrive = 0xF3AA, - - /// - /// The Font Awesome "google-play" icon unicode character. - /// - GooglePlay = 0xF3AB, - - /// - /// The Font Awesome "google-plus" icon unicode character. - /// - GooglePlus = 0xF2B3, - - /// - /// The Font Awesome "google-plus-g" icon unicode character. - /// - GooglePlusG = 0xF0D5, - - /// - /// The Font Awesome "google-plus-square" icon unicode character. - /// - GooglePlusSquare = 0xF0D4, - - /// - /// The Font Awesome "google-wallet" icon unicode character. - /// - GoogleWallet = 0xF1EE, - - /// - /// The Font Awesome "gopuram" icon unicode character. - /// - Gopuram = 0xF664, - - /// - /// The Font Awesome "graduation-cap" icon unicode character. - /// - GraduationCap = 0xF19D, - - /// - /// The Font Awesome "gratipay" icon unicode character. - /// - Gratipay = 0xF184, - - /// - /// The Font Awesome "grav" icon unicode character. - /// - Grav = 0xF2D6, - - /// - /// The Font Awesome "greater-than" icon unicode character. - /// - GreaterThan = 0xF531, - - /// - /// The Font Awesome "greater-than-equal" icon unicode character. - /// - GreaterThanEqual = 0xF532, - - /// - /// The Font Awesome "grimace" icon unicode character. - /// - Grimace = 0xF57F, - - /// - /// The Font Awesome "grin" icon unicode character. - /// - Grin = 0xF580, - - /// - /// The Font Awesome "grin-alt" icon unicode character. - /// - GrinAlt = 0xF581, - - /// - /// The Font Awesome "grin-beam" icon unicode character. - /// - GrinBeam = 0xF582, - - /// - /// The Font Awesome "grin-beam-sweat" icon unicode character. - /// - GrinBeamSweat = 0xF583, - - /// - /// The Font Awesome "grin-hearts" icon unicode character. - /// - GrinHearts = 0xF584, - - /// - /// The Font Awesome "grin-squint" icon unicode character. - /// - GrinSquint = 0xF585, - - /// - /// The Font Awesome "grin-squint-tears" icon unicode character. - /// - GrinSquintTears = 0xF586, - - /// - /// The Font Awesome "grin-stars" icon unicode character. - /// - GrinStars = 0xF587, - - /// - /// The Font Awesome "grin-tears" icon unicode character. - /// - GrinTears = 0xF588, - - /// - /// The Font Awesome "grin-tongue" icon unicode character. - /// - GrinTongue = 0xF589, - - /// - /// The Font Awesome "grin-tongue-squint" icon unicode character. - /// - GrinTongueSquint = 0xF58A, - - /// - /// The Font Awesome "grin-tongue-wink" icon unicode character. - /// - GrinTongueWink = 0xF58B, - - /// - /// The Font Awesome "grin-wink" icon unicode character. - /// - GrinWink = 0xF58C, - - /// - /// The Font Awesome "gripfire" icon unicode character. - /// - Gripfire = 0xF3AC, - - /// - /// The Font Awesome "grip-horizontal" icon unicode character. - /// - GripHorizontal = 0xF58D, - - /// - /// The Font Awesome "grip-lines" icon unicode character. - /// - GripLines = 0xF7A4, - - /// - /// The Font Awesome "grip-lines-vertical" icon unicode character. - /// - GripLinesVertical = 0xF7A5, - - /// - /// The Font Awesome "grip-vertical" icon unicode character. - /// - GripVertical = 0xF58E, - - /// - /// The Font Awesome "grunt" icon unicode character. - /// - Grunt = 0xF3AD, - - /// - /// The Font Awesome "guitar" icon unicode character. - /// - Guitar = 0xF7A6, - - /// - /// The Font Awesome "gulp" icon unicode character. - /// - Gulp = 0xF3AE, - - /// - /// The Font Awesome "hacker-news" icon unicode character. - /// - HackerNews = 0xF1D4, - - /// - /// The Font Awesome "hacker-news-square" icon unicode character. - /// - HackerNewsSquare = 0xF3AF, - - /// - /// The Font Awesome "hackerrank" icon unicode character. - /// - Hackerrank = 0xF5F7, - - /// - /// The Font Awesome "hamburger" icon unicode character. - /// - Hamburger = 0xF805, - - /// - /// The Font Awesome "hammer" icon unicode character. - /// - Hammer = 0xF6E3, - - /// - /// The Font Awesome "hamsa" icon unicode character. - /// - Hamsa = 0xF665, - - /// - /// The Font Awesome "hand-holding" icon unicode character. - /// - HandHolding = 0xF4BD, - - /// - /// The Font Awesome "hand-holding-heart" icon unicode character. - /// - HandHoldingHeart = 0xF4BE, - - /// - /// The Font Awesome "hand-holding-usd" icon unicode character. - /// - HandHoldingUsd = 0xF4C0, - - /// - /// The Font Awesome "hand-lizard" icon unicode character. - /// - HandLizard = 0xF258, - - /// - /// The Font Awesome "hand-middle-finger" icon unicode character. - /// - HandMiddleFinger = 0xF806, - - /// - /// The Font Awesome "hand-paper" icon unicode character. - /// - HandPaper = 0xF256, - - /// - /// The Font Awesome "hand-peace" icon unicode character. - /// - HandPeace = 0xF25B, - - /// - /// The Font Awesome "hand-point-down" icon unicode character. - /// - HandPointDown = 0xF0A7, - - /// - /// The Font Awesome "hand-pointer" icon unicode character. - /// - HandPointer = 0xF25A, - - /// - /// The Font Awesome "hand-point-left" icon unicode character. - /// - HandPointLeft = 0xF0A5, - - /// - /// The Font Awesome "hand-point-right" icon unicode character. - /// - HandPointRight = 0xF0A4, - - /// - /// The Font Awesome "hand-point-up" icon unicode character. - /// - HandPointUp = 0xF0A6, - - /// - /// The Font Awesome "hand-rock" icon unicode character. - /// - HandRock = 0xF255, - - /// - /// The Font Awesome "hands" icon unicode character. - /// - Hands = 0xF4C2, - - /// - /// The Font Awesome "hand-scissors" icon unicode character. - /// - HandScissors = 0xF257, - - /// - /// The Font Awesome "handshake" icon unicode character. - /// - Handshake = 0xF2B5, - - /// - /// The Font Awesome "hands-helping" icon unicode character. - /// - HandsHelping = 0xF4C4, - - /// - /// The Font Awesome "hand-spock" icon unicode character. - /// - HandSpock = 0xF259, - - /// - /// The Font Awesome "hanukiah" icon unicode character. - /// - Hanukiah = 0xF6E6, - - /// - /// The Font Awesome "hard-hat" icon unicode character. - /// - HardHat = 0xF807, - - /// - /// The Font Awesome "hashtag" icon unicode character. - /// - Hashtag = 0xF292, - - /// - /// The Font Awesome "hat-cowboy" icon unicode character. - /// - HatCowboy = 0xF8C0, - - /// - /// The Font Awesome "hat-cowboy-side" icon unicode character. - /// - HatCowboySide = 0xF8C1, - - /// - /// The Font Awesome "hat-wizard" icon unicode character. - /// - HatWizard = 0xF6E8, - - /// - /// The Font Awesome "hdd" icon unicode character. - /// - Hdd = 0xF0A0, - - /// - /// The Font Awesome "heading" icon unicode character. - /// - Heading = 0xF1DC, - - /// - /// The Font Awesome "headphones" icon unicode character. - /// - Headphones = 0xF025, - - /// - /// The Font Awesome "headphones-alt" icon unicode character. - /// - HeadphonesAlt = 0xF58F, - - /// - /// The Font Awesome "headset" icon unicode character. - /// - Headset = 0xF590, - - /// - /// The Font Awesome "heart" icon unicode character. - /// - Heart = 0xF004, - - /// - /// The Font Awesome "heartbeat" icon unicode character. - /// - Heartbeat = 0xF21E, - - /// - /// The Font Awesome "heart-broken" icon unicode character. - /// - HeartBroken = 0xF7A9, - - /// - /// The Font Awesome "helicopter" icon unicode character. - /// - Helicopter = 0xF533, - - /// - /// The Font Awesome "highlighter" icon unicode character. - /// - Highlighter = 0xF591, - - /// - /// The Font Awesome "hiking" icon unicode character. - /// - Hiking = 0xF6EC, - - /// - /// The Font Awesome "hippo" icon unicode character. - /// - Hippo = 0xF6ED, - - /// - /// The Font Awesome "hips" icon unicode character. - /// - Hips = 0xF452, - - /// - /// The Font Awesome "hire-a-helper" icon unicode character. - /// - HireAHelper = 0xF3B0, - - /// - /// The Font Awesome "history" icon unicode character. - /// - History = 0xF1DA, - - /// - /// The Font Awesome "hockey-puck" icon unicode character. - /// - HockeyPuck = 0xF453, - - /// - /// The Font Awesome "holly-berry" icon unicode character. - /// - HollyBerry = 0xF7AA, - - /// - /// The Font Awesome "home" icon unicode character. - /// - Home = 0xF015, - - /// - /// The Font Awesome "hooli" icon unicode character. - /// - Hooli = 0xF427, - - /// - /// The Font Awesome "hornbill" icon unicode character. - /// - Hornbill = 0xF592, - - /// - /// The Font Awesome "horse" icon unicode character. - /// - Horse = 0xF6F0, - - /// - /// The Font Awesome "horse-head" icon unicode character. - /// - HorseHead = 0xF7AB, - - /// - /// The Font Awesome "hospital" icon unicode character. - /// - Hospital = 0xF0F8, - - /// - /// The Font Awesome "hospital-alt" icon unicode character. - /// - HospitalAlt = 0xF47D, - - /// - /// The Font Awesome "hospital-symbol" icon unicode character. - /// - HospitalSymbol = 0xF47E, - - /// - /// The Font Awesome "hotdog" icon unicode character. - /// - Hotdog = 0xF80F, - - /// - /// The Font Awesome "hotel" icon unicode character. - /// - Hotel = 0xF594, - - /// - /// The Font Awesome "hotjar" icon unicode character. - /// - Hotjar = 0xF3B1, - - /// - /// The Font Awesome "hot-tub" icon unicode character. - /// - HotTub = 0xF593, - - /// - /// The Font Awesome "hourglass" icon unicode character. - /// - Hourglass = 0xF254, - - /// - /// The Font Awesome "hourglass-end" icon unicode character. - /// - HourglassEnd = 0xF253, - - /// - /// The Font Awesome "hourglass-half" icon unicode character. - /// - HourglassHalf = 0xF252, - - /// - /// The Font Awesome "hourglass-start" icon unicode character. - /// - HourglassStart = 0xF251, - - /// - /// The Font Awesome "house-damage" icon unicode character. - /// - HouseDamage = 0xF6F1, - - /// - /// The Font Awesome "houzz" icon unicode character. - /// - Houzz = 0xF27C, - - /// - /// The Font Awesome "hryvnia" icon unicode character. - /// - Hryvnia = 0xF6F2, - - /// - /// The Font Awesome "h-square" icon unicode character. - /// - HSquare = 0xF0FD, - - /// - /// The Font Awesome "html5" icon unicode character. - /// - Html5 = 0xF13B, - - /// - /// The Font Awesome "hubspot" icon unicode character. - /// - Hubspot = 0xF3B2, - - /// - /// The Font Awesome "ice-cream" icon unicode character. - /// - IceCream = 0xF810, - - /// - /// The Font Awesome "icicles" icon unicode character. - /// - Icicles = 0xF7AD, - - /// - /// The Font Awesome "icons" icon unicode character. - /// - Icons = 0xF86D, - - /// - /// The Font Awesome "i-cursor" icon unicode character. - /// - ICursor = 0xF246, - - /// - /// The Font Awesome "id-badge" icon unicode character. - /// - IdBadge = 0xF2C1, - - /// - /// The Font Awesome "id-card" icon unicode character. - /// - IdCard = 0xF2C2, - - /// - /// The Font Awesome "id-card-alt" icon unicode character. - /// - IdCardAlt = 0xF47F, - - /// - /// The Font Awesome "ideal" icon unicode character. - /// - Ideal = 0xF913, - - /// - /// The Font Awesome "igloo" icon unicode character. - /// - Igloo = 0xF7AE, - - /// - /// The Font Awesome "image" icon unicode character. - /// - Image = 0xF03E, - - /// - /// The Font Awesome "images" icon unicode character. - /// - Images = 0xF302, - - /// - /// The Font Awesome "imdb" icon unicode character. - /// - Imdb = 0xF2D8, - - /// - /// The Font Awesome "inbox" icon unicode character. - /// - Inbox = 0xF01C, - - /// - /// The Font Awesome "indent" icon unicode character. - /// - Indent = 0xF03C, - - /// - /// The Font Awesome "industry" icon unicode character. - /// - Industry = 0xF275, - - /// - /// The Font Awesome "infinity" icon unicode character. - /// - Infinity = 0xF534, - - /// - /// The Font Awesome "info" icon unicode character. - /// - Info = 0xF129, - - /// - /// The Font Awesome "info-circle" icon unicode character. - /// - InfoCircle = 0xF05A, - - /// - /// The Font Awesome "instagram" icon unicode character. - /// - Instagram = 0xF16D, - - /// - /// The Font Awesome "instagram-square" icon unicode character. - /// - InstagramSquare = 0xF955, - - /// - /// The Font Awesome "intercom" icon unicode character. - /// - Intercom = 0xF7AF, - - /// - /// The Font Awesome "internet-explorer" icon unicode character. - /// - InternetExplorer = 0xF26B, - - /// - /// The Font Awesome "invision" icon unicode character. - /// - Invision = 0xF7B0, - - /// - /// The Font Awesome "ioxhost" icon unicode character. - /// - Ioxhost = 0xF208, - - /// - /// The Font Awesome "italic" icon unicode character. - /// - Italic = 0xF033, - - /// - /// The Font Awesome "itch-io" icon unicode character. - /// - ItchIo = 0xF83A, - - /// - /// The Font Awesome "itunes" icon unicode character. - /// - Itunes = 0xF3B4, - - /// - /// The Font Awesome "itunes-note" icon unicode character. - /// - ItunesNote = 0xF3B5, - - /// - /// The Font Awesome "java" icon unicode character. - /// - Java = 0xF4E4, - - /// - /// The Font Awesome "jedi" icon unicode character. - /// - Jedi = 0xF669, - - /// - /// The Font Awesome "jedi-order" icon unicode character. - /// - JediOrder = 0xF50E, - - /// - /// The Font Awesome "jenkins" icon unicode character. - /// - Jenkins = 0xF3B6, - - /// - /// The Font Awesome "jira" icon unicode character. - /// - Jira = 0xF7B1, - - /// - /// The Font Awesome "joget" icon unicode character. - /// - Joget = 0xF3B7, - - /// - /// The Font Awesome "joint" icon unicode character. - /// - Joint = 0xF595, - - /// - /// The Font Awesome "joomla" icon unicode character. - /// - Joomla = 0xF1AA, - - /// - /// The Font Awesome "journal-whills" icon unicode character. - /// - JournalWhills = 0xF66A, - - /// - /// The Font Awesome "js" icon unicode character. - /// - Js = 0xF3B8, - - /// - /// The Font Awesome "jsfiddle" icon unicode character. - /// - Jsfiddle = 0xF1CC, - - /// - /// The Font Awesome "js-square" icon unicode character. - /// - JsSquare = 0xF3B9, - - /// - /// The Font Awesome "kaaba" icon unicode character. - /// - Kaaba = 0xF66B, - - /// - /// The Font Awesome "kaggle" icon unicode character. - /// - Kaggle = 0xF5FA, - - /// - /// The Font Awesome "key" icon unicode character. - /// - Key = 0xF084, - - /// - /// The Font Awesome "keybase" icon unicode character. - /// - Keybase = 0xF4F5, - - /// - /// The Font Awesome "keyboard" icon unicode character. - /// - Keyboard = 0xF11C, - - /// - /// The Font Awesome "keycdn" icon unicode character. - /// - Keycdn = 0xF3BA, - - /// - /// The Font Awesome "khanda" icon unicode character. - /// - Khanda = 0xF66D, - - /// - /// The Font Awesome "kickstarter" icon unicode character. - /// - Kickstarter = 0xF3BB, - - /// - /// The Font Awesome "kickstarter-k" icon unicode character. - /// - KickstarterK = 0xF3BC, - - /// - /// The Font Awesome "kiss" icon unicode character. - /// - Kiss = 0xF596, - - /// - /// The Font Awesome "kiss-beam" icon unicode character. - /// - KissBeam = 0xF597, - - /// - /// The Font Awesome "kiss-wink-heart" icon unicode character. - /// - KissWinkHeart = 0xF598, - - /// - /// The Font Awesome "kiwi-bird" icon unicode character. - /// - KiwiBird = 0xF535, - - /// - /// The Font Awesome "korvue" icon unicode character. - /// - Korvue = 0xF42F, - - /// - /// The Font Awesome "landmark" icon unicode character. - /// - Landmark = 0xF66F, - - /// - /// The Font Awesome "language" icon unicode character. - /// - Language = 0xF1AB, - - /// - /// The Font Awesome "laptop" icon unicode character. - /// - Laptop = 0xF109, - - /// - /// The Font Awesome "laptop-code" icon unicode character. - /// - LaptopCode = 0xF5FC, - - /// - /// The Font Awesome "laptop-medical" icon unicode character. - /// - LaptopMedical = 0xF812, - - /// - /// The Font Awesome "laravel" icon unicode character. - /// - Laravel = 0xF3BD, - - /// - /// The Font Awesome "lastfm" icon unicode character. - /// - Lastfm = 0xF202, - - /// - /// The Font Awesome "lastfm-square" icon unicode character. - /// - LastfmSquare = 0xF203, - - /// - /// The Font Awesome "laugh" icon unicode character. - /// - Laugh = 0xF599, - - /// - /// The Font Awesome "laugh-beam" icon unicode character. - /// - LaughBeam = 0xF59A, - - /// - /// The Font Awesome "laugh-squint" icon unicode character. - /// - LaughSquint = 0xF59B, - - /// - /// The Font Awesome "laugh-wink" icon unicode character. - /// - LaughWink = 0xF59C, - - /// - /// The Font Awesome "layer-group" icon unicode character. - /// - LayerGroup = 0xF5FD, - - /// - /// The Font Awesome "leaf" icon unicode character. - /// - Leaf = 0xF06C, - - /// - /// The Font Awesome "leanpub" icon unicode character. - /// - Leanpub = 0xF212, - - /// - /// The Font Awesome "lemon" icon unicode character. - /// - Lemon = 0xF094, - - /// - /// The Font Awesome "less" icon unicode character. - /// - Less = 0xF41D, - - /// - /// The Font Awesome "less-than" icon unicode character. - /// - LessThan = 0xF536, - - /// - /// The Font Awesome "less-than-equal" icon unicode character. - /// - LessThanEqual = 0xF537, - - /// - /// The Font Awesome "level-down-alt" icon unicode character. - /// - LevelDownAlt = 0xF3BE, - - /// - /// The Font Awesome "level-up-alt" icon unicode character. - /// - LevelUpAlt = 0xF3BF, - - /// - /// The Font Awesome "life-ring" icon unicode character. - /// - LifeRing = 0xF1CD, - - /// - /// The Font Awesome "lightbulb" icon unicode character. - /// - Lightbulb = 0xF0EB, - - /// - /// The Font Awesome "line" icon unicode character. - /// - Line = 0xF3C0, - - /// - /// The Font Awesome "link" icon unicode character. - /// - Link = 0xF0C1, - - /// - /// The Font Awesome "linkedin" icon unicode character. - /// - Linkedin = 0xF08C, - - /// - /// The Font Awesome "linkedin-in" icon unicode character. - /// - LinkedinIn = 0xF0E1, - - /// - /// The Font Awesome "linode" icon unicode character. - /// - Linode = 0xF2B8, - - /// - /// The Font Awesome "linux" icon unicode character. - /// - Linux = 0xF17C, - - /// - /// The Font Awesome "lira-sign" icon unicode character. - /// - LiraSign = 0xF195, - - /// - /// The Font Awesome "list" icon unicode character. - /// - List = 0xF03A, - - /// - /// The Font Awesome "list-alt" icon unicode character. - /// - ListAlt = 0xF022, - - /// - /// The Font Awesome "list-ol" icon unicode character. - /// - ListOl = 0xF0CB, - - /// - /// The Font Awesome "list-ul" icon unicode character. - /// - ListUl = 0xF0CA, - - /// - /// The Font Awesome "location-arrow" icon unicode character. - /// - LocationArrow = 0xF124, - - /// - /// The Font Awesome "lock" icon unicode character. - /// - Lock = 0xF023, - - /// - /// The Font Awesome "lock-open" icon unicode character. - /// - LockOpen = 0xF3C1, - - /// - /// The Font Awesome "long-arrow-alt-down" icon unicode character. - /// - LongArrowAltDown = 0xF309, - - /// - /// The Font Awesome "long-arrow-alt-left" icon unicode character. - /// - LongArrowAltLeft = 0xF30A, - - /// - /// The Font Awesome "long-arrow-alt-right" icon unicode character. - /// - LongArrowAltRight = 0xF30B, - - /// - /// The Font Awesome "long-arrow-alt-up" icon unicode character. - /// - LongArrowAltUp = 0xF30C, - - /// - /// The Font Awesome "low-vision" icon unicode character. - /// - LowVision = 0xF2A8, - - /// - /// The Font Awesome "luggage-cart" icon unicode character. - /// - LuggageCart = 0xF59D, - - /// - /// The Font Awesome "lyft" icon unicode character. - /// - Lyft = 0xF3C3, - - /// - /// The Font Awesome "magento" icon unicode character. - /// - Magento = 0xF3C4, - - /// - /// The Font Awesome "magic" icon unicode character. - /// - Magic = 0xF0D0, - - /// - /// The Font Awesome "magnet" icon unicode character. - /// - Magnet = 0xF076, - - /// - /// The Font Awesome "mail-bulk" icon unicode character. - /// - MailBulk = 0xF674, - - /// - /// The Font Awesome "mailchimp" icon unicode character. - /// - Mailchimp = 0xF59E, - - /// - /// The Font Awesome "male" icon unicode character. - /// - Male = 0xF183, - - /// - /// The Font Awesome "mandalorian" icon unicode character. - /// - Mandalorian = 0xF50F, - - /// - /// The Font Awesome "map" icon unicode character. - /// - Map = 0xF279, - - /// - /// The Font Awesome "map-marked" icon unicode character. - /// - MapMarked = 0xF59F, - - /// - /// The Font Awesome "map-marked-alt" icon unicode character. - /// - MapMarkedAlt = 0xF5A0, - - /// - /// The Font Awesome "map-marker" icon unicode character. - /// - MapMarker = 0xF041, - - /// - /// The Font Awesome "map-marker-alt" icon unicode character. - /// - MapMarkerAlt = 0xF3C5, - - /// - /// The Font Awesome "map-pin" icon unicode character. - /// - MapPin = 0xF276, - - /// - /// The Font Awesome "map-signs" icon unicode character. - /// - MapSigns = 0xF277, - - /// - /// The Font Awesome "markdown" icon unicode character. - /// - Markdown = 0xF60F, - - /// - /// The Font Awesome "marker" icon unicode character. - /// - Marker = 0xF5A1, - - /// - /// The Font Awesome "mars" icon unicode character. - /// - Mars = 0xF222, - - /// - /// The Font Awesome "mars-double" icon unicode character. - /// - MarsDouble = 0xF227, - - /// - /// The Font Awesome "mars-stroke" icon unicode character. - /// - MarsStroke = 0xF229, - - /// - /// The Font Awesome "mars-stroke-h" icon unicode character. - /// - MarsStrokeH = 0xF22B, - - /// - /// The Font Awesome "mars-stroke-v" icon unicode character. - /// - MarsStrokeV = 0xF22A, - - /// - /// The Font Awesome "mask" icon unicode character. - /// - Mask = 0xF6FA, - - /// - /// The Font Awesome "mastodon" icon unicode character. - /// - Mastodon = 0xF4F6, - - /// - /// The Font Awesome "maxcdn" icon unicode character. - /// - Maxcdn = 0xF136, - - /// - /// The Font Awesome "mdb" icon unicode character. - /// - Mdb = 0xF8CA, - - /// - /// The Font Awesome "medal" icon unicode character. - /// - Medal = 0xF5A2, - - /// - /// The Font Awesome "medapps" icon unicode character. - /// - Medapps = 0xF3C6, - - /// - /// The Font Awesome "medium" icon unicode character. - /// - Medium = 0xF23A, - - /// - /// The Font Awesome "medium-m" icon unicode character. - /// - MediumM = 0xF3C7, - - /// - /// The Font Awesome "medkit" icon unicode character. - /// - Medkit = 0xF0FA, - - /// - /// The Font Awesome "medrt" icon unicode character. - /// - Medrt = 0xF3C8, - - /// - /// The Font Awesome "meetup" icon unicode character. - /// - Meetup = 0xF2E0, - - /// - /// The Font Awesome "megaport" icon unicode character. - /// - Megaport = 0xF5A3, - - /// - /// The Font Awesome "meh" icon unicode character. - /// - Meh = 0xF11A, - - /// - /// The Font Awesome "meh-blank" icon unicode character. - /// - MehBlank = 0xF5A4, - - /// - /// The Font Awesome "meh-rolling-eyes" icon unicode character. - /// - MehRollingEyes = 0xF5A5, - - /// - /// The Font Awesome "memory" icon unicode character. - /// - Memory = 0xF538, - - /// - /// The Font Awesome "mendeley" icon unicode character. - /// - Mendeley = 0xF7B3, - - /// - /// The Font Awesome "menorah" icon unicode character. - /// - Menorah = 0xF676, - - /// - /// The Font Awesome "mercury" icon unicode character. - /// - Mercury = 0xF223, - - /// - /// The Font Awesome "meteor" icon unicode character. - /// - Meteor = 0xF753, - - /// - /// The Font Awesome "microblog" icon unicode character. - /// - Microblog = 0xF91A, - - /// - /// The Font Awesome "microchip" icon unicode character. - /// - Microchip = 0xF2DB, - - /// - /// The Font Awesome "microphone" icon unicode character. - /// - Microphone = 0xF130, - - /// - /// The Font Awesome "microphone-alt" icon unicode character. - /// - MicrophoneAlt = 0xF3C9, - - /// - /// The Font Awesome "microphone-alt-slash" icon unicode character. - /// - MicrophoneAltSlash = 0xF539, - - /// - /// The Font Awesome "microphone-slash" icon unicode character. - /// - MicrophoneSlash = 0xF131, - - /// - /// The Font Awesome "microscope" icon unicode character. - /// - Microscope = 0xF610, - - /// - /// The Font Awesome "microsoft" icon unicode character. - /// - Microsoft = 0xF3CA, - - /// - /// The Font Awesome "minus" icon unicode character. - /// - Minus = 0xF068, - - /// - /// The Font Awesome "minus-circle" icon unicode character. - /// - MinusCircle = 0xF056, - - /// - /// The Font Awesome "minus-square" icon unicode character. - /// - MinusSquare = 0xF146, - - /// - /// The Font Awesome "mitten" icon unicode character. - /// - Mitten = 0xF7B5, - - /// - /// The Font Awesome "mix" icon unicode character. - /// - Mix = 0xF3CB, - - /// - /// The Font Awesome "mixcloud" icon unicode character. - /// - Mixcloud = 0xF289, - - /// - /// The Font Awesome "mixer" icon unicode character. - /// - Mixer = 0xF956, - - /// - /// The Font Awesome "mizuni" icon unicode character. - /// - Mizuni = 0xF3CC, - - /// - /// The Font Awesome "mobile" icon unicode character. - /// - Mobile = 0xF10B, - - /// - /// The Font Awesome "mobile-alt" icon unicode character. - /// - MobileAlt = 0xF3CD, - - /// - /// The Font Awesome "modx" icon unicode character. - /// - Modx = 0xF285, - - /// - /// The Font Awesome "monero" icon unicode character. - /// - Monero = 0xF3D0, - - /// - /// The Font Awesome "money-bill" icon unicode character. - /// - MoneyBill = 0xF0D6, - - /// - /// The Font Awesome "money-bill-alt" icon unicode character. - /// - MoneyBillAlt = 0xF3D1, - - /// - /// The Font Awesome "money-bill-wave" icon unicode character. - /// - MoneyBillWave = 0xF53A, - - /// - /// The Font Awesome "money-bill-wave-alt" icon unicode character. - /// - MoneyBillWaveAlt = 0xF53B, - - /// - /// The Font Awesome "money-check" icon unicode character. - /// - MoneyCheck = 0xF53C, - - /// - /// The Font Awesome "money-check-alt" icon unicode character. - /// - MoneyCheckAlt = 0xF53D, - - /// - /// The Font Awesome "monument" icon unicode character. - /// - Monument = 0xF5A6, - - /// - /// The Font Awesome "moon" icon unicode character. - /// - Moon = 0xF186, - - /// - /// The Font Awesome "mortar-pestle" icon unicode character. - /// - MortarPestle = 0xF5A7, - - /// - /// The Font Awesome "mosque" icon unicode character. - /// - Mosque = 0xF678, - - /// - /// The Font Awesome "motorcycle" icon unicode character. - /// - Motorcycle = 0xF21C, - - /// - /// The Font Awesome "mountain" icon unicode character. - /// - Mountain = 0xF6FC, - - /// - /// The Font Awesome "mouse" icon unicode character. - /// - Mouse = 0xF8CC, - - /// - /// The Font Awesome "mouse-pointer" icon unicode character. - /// - MousePointer = 0xF245, - - /// - /// The Font Awesome "mug-hot" icon unicode character. - /// - MugHot = 0xF7B6, - - /// - /// The Font Awesome "music" icon unicode character. - /// - Music = 0xF001, - - /// - /// The Font Awesome "napster" icon unicode character. - /// - Napster = 0xF3D2, - - /// - /// The Font Awesome "neos" icon unicode character. - /// - Neos = 0xF612, - - /// - /// The Font Awesome "network-wired" icon unicode character. - /// - NetworkWired = 0xF6FF, - - /// - /// The Font Awesome "neuter" icon unicode character. - /// - Neuter = 0xF22C, - - /// - /// The Font Awesome "newspaper" icon unicode character. - /// - Newspaper = 0xF1EA, - - /// - /// The Font Awesome "nimblr" icon unicode character. - /// - Nimblr = 0xF5A8, - - /// - /// The Font Awesome "node" icon unicode character. - /// - Node = 0xF419, - - /// - /// The Font Awesome "node-js" icon unicode character. - /// - NodeJs = 0xF3D3, - - /// - /// The Font Awesome "not-equal" icon unicode character. - /// - NotEqual = 0xF53E, - - /// - /// The Font Awesome "notes-medical" icon unicode character. - /// - NotesMedical = 0xF481, - - /// - /// The Font Awesome "npm" icon unicode character. - /// - Npm = 0xF3D4, - - /// - /// The Font Awesome "ns8" icon unicode character. - /// - Ns8 = 0xF3D5, - - /// - /// The Font Awesome "nutritionix" icon unicode character. - /// - Nutritionix = 0xF3D6, - - /// - /// The Font Awesome "object-group" icon unicode character. - /// - ObjectGroup = 0xF247, - - /// - /// The Font Awesome "object-ungroup" icon unicode character. - /// - ObjectUngroup = 0xF248, - - /// - /// The Font Awesome "odnoklassniki" icon unicode character. - /// - Odnoklassniki = 0xF263, - - /// - /// The Font Awesome "odnoklassniki-square" icon unicode character. - /// - OdnoklassnikiSquare = 0xF264, - - /// - /// The Font Awesome "oil-can" icon unicode character. - /// - OilCan = 0xF613, - - /// - /// The Font Awesome "old-republic" icon unicode character. - /// - OldRepublic = 0xF510, - - /// - /// The Font Awesome "om" icon unicode character. - /// - Om = 0xF679, - - /// - /// The Font Awesome "opencart" icon unicode character. - /// - Opencart = 0xF23D, - - /// - /// The Font Awesome "openid" icon unicode character. - /// - Openid = 0xF19B, - - /// - /// The Font Awesome "opera" icon unicode character. - /// - Opera = 0xF26A, - - /// - /// The Font Awesome "optin-monster" icon unicode character. - /// - OptinMonster = 0xF23C, - - /// - /// The Font Awesome "orcid" icon unicode character. - /// - Orcid = 0xF8D2, - - /// - /// The Font Awesome "osi" icon unicode character. - /// - Osi = 0xF41A, - - /// - /// The Font Awesome "otter" icon unicode character. - /// - Otter = 0xF700, - - /// - /// The Font Awesome "outdent" icon unicode character. - /// - Outdent = 0xF03B, - - /// - /// The Font Awesome "page4" icon unicode character. - /// - Page4 = 0xF3D7, - - /// - /// The Font Awesome "pagelines" icon unicode character. - /// - Pagelines = 0xF18C, - - /// - /// The Font Awesome "pager" icon unicode character. - /// - Pager = 0xF815, - - /// - /// The Font Awesome "paint-brush" icon unicode character. - /// - PaintBrush = 0xF1FC, - - /// - /// The Font Awesome "paint-roller" icon unicode character. - /// - PaintRoller = 0xF5AA, - - /// - /// The Font Awesome "palette" icon unicode character. - /// - Palette = 0xF53F, - - /// - /// The Font Awesome "palfed" icon unicode character. - /// - Palfed = 0xF3D8, - - /// - /// The Font Awesome "pallet" icon unicode character. - /// - Pallet = 0xF482, - - /// - /// The Font Awesome "paperclip" icon unicode character. - /// - Paperclip = 0xF0C6, - - /// - /// The Font Awesome "paper-plane" icon unicode character. - /// - PaperPlane = 0xF1D8, - - /// - /// The Font Awesome "parachute-box" icon unicode character. - /// - ParachuteBox = 0xF4CD, - - /// - /// The Font Awesome "paragraph" icon unicode character. - /// - Paragraph = 0xF1DD, - - /// - /// The Font Awesome "parking" icon unicode character. - /// - Parking = 0xF540, - - /// - /// The Font Awesome "passport" icon unicode character. - /// - Passport = 0xF5AB, - - /// - /// The Font Awesome "pastafarianism" icon unicode character. - /// - Pastafarianism = 0xF67B, - - /// - /// The Font Awesome "paste" icon unicode character. - /// - Paste = 0xF0EA, - - /// - /// The Font Awesome "patreon" icon unicode character. - /// - Patreon = 0xF3D9, - - /// - /// The Font Awesome "pause" icon unicode character. - /// - Pause = 0xF04C, - - /// - /// The Font Awesome "pause-circle" icon unicode character. - /// - PauseCircle = 0xF28B, - - /// - /// The Font Awesome "paw" icon unicode character. - /// - Paw = 0xF1B0, - - /// - /// The Font Awesome "paypal" icon unicode character. - /// - Paypal = 0xF1ED, - - /// - /// The Font Awesome "peace" icon unicode character. - /// - Peace = 0xF67C, - - /// - /// The Font Awesome "pen" icon unicode character. - /// - Pen = 0xF304, - - /// - /// The Font Awesome "pen-alt" icon unicode character. - /// - PenAlt = 0xF305, - - /// - /// The Font Awesome "pencil-alt" icon unicode character. - /// - PencilAlt = 0xF303, - - /// - /// The Font Awesome "pencil-ruler" icon unicode character. - /// - PencilRuler = 0xF5AE, - - /// - /// The Font Awesome "pen-fancy" icon unicode character. - /// - PenFancy = 0xF5AC, - - /// - /// The Font Awesome "pen-nib" icon unicode character. - /// - PenNib = 0xF5AD, - - /// - /// The Font Awesome "penny-arcade" icon unicode character. - /// - PennyArcade = 0xF704, - - /// - /// The Font Awesome "pen-square" icon unicode character. - /// - PenSquare = 0xF14B, - - /// - /// The Font Awesome "people-carry" icon unicode character. - /// - PeopleCarry = 0xF4CE, - - /// - /// The Font Awesome "pepper-hot" icon unicode character. - /// - PepperHot = 0xF816, - - /// - /// The Font Awesome "percent" icon unicode character. - /// - Percent = 0xF295, - - /// - /// The Font Awesome "percentage" icon unicode character. - /// - Percentage = 0xF541, - - /// - /// The Font Awesome "periscope" icon unicode character. - /// - Periscope = 0xF3DA, - - /// - /// The Font Awesome "person-booth" icon unicode character. - /// - PersonBooth = 0xF756, - - /// - /// The Font Awesome "phabricator" icon unicode character. - /// - Phabricator = 0xF3DB, - - /// - /// The Font Awesome "phoenix-framework" icon unicode character. - /// - PhoenixFramework = 0xF3DC, - - /// - /// The Font Awesome "phoenix-squadron" icon unicode character. - /// - PhoenixSquadron = 0xF511, - - /// - /// The Font Awesome "phone" icon unicode character. - /// - Phone = 0xF095, - - /// - /// The Font Awesome "phone-alt" icon unicode character. - /// - PhoneAlt = 0xF879, - - /// - /// The Font Awesome "phone-slash" icon unicode character. - /// - PhoneSlash = 0xF3DD, - - /// - /// The Font Awesome "phone-square" icon unicode character. - /// - PhoneSquare = 0xF098, - - /// - /// The Font Awesome "phone-square-alt" icon unicode character. - /// - PhoneSquareAlt = 0xF87B, - - /// - /// The Font Awesome "phone-volume" icon unicode character. - /// - PhoneVolume = 0xF2A0, - - /// - /// The Font Awesome "photo-video" icon unicode character. - /// - PhotoVideo = 0xF87C, - - /// - /// The Font Awesome "php" icon unicode character. - /// - Php = 0xF457, - - /// - /// The Font Awesome "pied-piper" icon unicode character. - /// - PiedPiper = 0xF2AE, - - /// - /// The Font Awesome "pied-piper-alt" icon unicode character. - /// - PiedPiperAlt = 0xF1A8, - - /// - /// The Font Awesome "pied-piper-hat" icon unicode character. - /// - PiedPiperHat = 0xF4E5, - - /// - /// The Font Awesome "pied-piper-pp" icon unicode character. - /// - PiedPiperPp = 0xF1A7, - - /// - /// The Font Awesome "pied-piper-square" icon unicode character. - /// - PiedPiperSquare = 0xF91E, - - /// - /// The Font Awesome "piggy-bank" icon unicode character. - /// - PiggyBank = 0xF4D3, - - /// - /// The Font Awesome "pills" icon unicode character. - /// - Pills = 0xF484, - - /// - /// The Font Awesome "pinterest" icon unicode character. - /// - Pinterest = 0xF0D2, - - /// - /// The Font Awesome "pinterest-p" icon unicode character. - /// - PinterestP = 0xF231, - - /// - /// The Font Awesome "pinterest-square" icon unicode character. - /// - PinterestSquare = 0xF0D3, - - /// - /// The Font Awesome "pizza-slice" icon unicode character. - /// - PizzaSlice = 0xF818, - - /// - /// The Font Awesome "place-of-worship" icon unicode character. - /// - PlaceOfWorship = 0xF67F, - - /// - /// The Font Awesome "plane" icon unicode character. - /// - Plane = 0xF072, - - /// - /// The Font Awesome "plane-arrival" icon unicode character. - /// - PlaneArrival = 0xF5AF, - - /// - /// The Font Awesome "plane-departure" icon unicode character. - /// - PlaneDeparture = 0xF5B0, - - /// - /// The Font Awesome "play" icon unicode character. - /// - Play = 0xF04B, - - /// - /// The Font Awesome "play-circle" icon unicode character. - /// - PlayCircle = 0xF144, - - /// - /// The Font Awesome "playstation" icon unicode character. - /// - Playstation = 0xF3DF, - - /// - /// The Font Awesome "plug" icon unicode character. - /// - Plug = 0xF1E6, - - /// - /// The Font Awesome "plus" icon unicode character. - /// - Plus = 0xF067, - - /// - /// The Font Awesome "plus-circle" icon unicode character. - /// - PlusCircle = 0xF055, - - /// - /// The Font Awesome "plus-square" icon unicode character. - /// - PlusSquare = 0xF0FE, - - /// - /// The Font Awesome "podcast" icon unicode character. - /// - Podcast = 0xF2CE, - - /// - /// The Font Awesome "poll" icon unicode character. - /// - Poll = 0xF681, - - /// - /// The Font Awesome "poll-h" icon unicode character. - /// - PollH = 0xF682, - - /// - /// The Font Awesome "poo" icon unicode character. - /// - Poo = 0xF2FE, - - /// - /// The Font Awesome "poop" icon unicode character. - /// - Poop = 0xF619, - - /// - /// The Font Awesome "poo-storm" icon unicode character. - /// - PooStorm = 0xF75A, - - /// - /// The Font Awesome "portrait" icon unicode character. - /// - Portrait = 0xF3E0, - - /// - /// The Font Awesome "pound-sign" icon unicode character. - /// - PoundSign = 0xF154, - - /// - /// The Font Awesome "power-off" icon unicode character. - /// - PowerOff = 0xF011, - - /// - /// The Font Awesome "pray" icon unicode character. - /// - Pray = 0xF683, - - /// - /// The Font Awesome "praying-hands" icon unicode character. - /// - PrayingHands = 0xF684, - - /// - /// The Font Awesome "prescription" icon unicode character. - /// - Prescription = 0xF5B1, - - /// - /// The Font Awesome "prescription-bottle" icon unicode character. - /// - PrescriptionBottle = 0xF485, - - /// - /// The Font Awesome "prescription-bottle-alt" icon unicode character. - /// - PrescriptionBottleAlt = 0xF486, - - /// - /// The Font Awesome "print" icon unicode character. - /// - Print = 0xF02F, - - /// - /// The Font Awesome "procedures" icon unicode character. - /// - Procedures = 0xF487, - - /// - /// The Font Awesome "product-hunt" icon unicode character. - /// - ProductHunt = 0xF288, - - /// - /// The Font Awesome "project-diagram" icon unicode character. - /// - ProjectDiagram = 0xF542, - - /// - /// The Font Awesome "pushed" icon unicode character. - /// - Pushed = 0xF3E1, - - /// - /// The Font Awesome "puzzle-piece" icon unicode character. - /// - PuzzlePiece = 0xF12E, - - /// - /// The Font Awesome "python" icon unicode character. - /// - Python = 0xF3E2, - - /// - /// The Font Awesome "qq" icon unicode character. - /// - Qq = 0xF1D6, - - /// - /// The Font Awesome "qrcode" icon unicode character. - /// - Qrcode = 0xF029, - - /// - /// The Font Awesome "question" icon unicode character. - /// - Question = 0xF128, - - /// - /// The Font Awesome "question-circle" icon unicode character. - /// - QuestionCircle = 0xF059, - - /// - /// The Font Awesome "quidditch" icon unicode character. - /// - Quidditch = 0xF458, - - /// - /// The Font Awesome "quinscape" icon unicode character. - /// - Quinscape = 0xF459, - - /// - /// The Font Awesome "quora" icon unicode character. - /// - Quora = 0xF2C4, - - /// - /// The Font Awesome "quote-left" icon unicode character. - /// - QuoteLeft = 0xF10D, - - /// - /// The Font Awesome "quote-right" icon unicode character. - /// - QuoteRight = 0xF10E, - - /// - /// The Font Awesome "quran" icon unicode character. - /// - Quran = 0xF687, - - /// - /// The Font Awesome "radiation" icon unicode character. - /// - Radiation = 0xF7B9, - - /// - /// The Font Awesome "radiation-alt" icon unicode character. - /// - RadiationAlt = 0xF7BA, - - /// - /// The Font Awesome "rainbow" icon unicode character. - /// - Rainbow = 0xF75B, - - /// - /// The Font Awesome "random" icon unicode character. - /// - Random = 0xF074, - - /// - /// The Font Awesome "raspberry-pi" icon unicode character. - /// - RaspberryPi = 0xF7BB, - - /// - /// The Font Awesome "ravelry" icon unicode character. - /// - Ravelry = 0xF2D9, - - /// - /// The Font Awesome "react" icon unicode character. - /// - React = 0xF41B, - - /// - /// The Font Awesome "reacteurope" icon unicode character. - /// - Reacteurope = 0xF75D, - - /// - /// The Font Awesome "readme" icon unicode character. - /// - Readme = 0xF4D5, - - /// - /// The Font Awesome "rebel" icon unicode character. - /// - Rebel = 0xF1D0, - - /// - /// The Font Awesome "receipt" icon unicode character. - /// - Receipt = 0xF543, - - /// - /// The Font Awesome "record-vinyl" icon unicode character. - /// - RecordVinyl = 0xF8D9, - - /// - /// The Font Awesome "recycle" icon unicode character. - /// - Recycle = 0xF1B8, - - /// - /// The Font Awesome "reddit" icon unicode character. - /// - Reddit = 0xF1A1, - - /// - /// The Font Awesome "reddit-alien" icon unicode character. - /// - RedditAlien = 0xF281, - - /// - /// The Font Awesome "reddit-square" icon unicode character. - /// - RedditSquare = 0xF1A2, - - /// - /// The Font Awesome "redhat" icon unicode character. - /// - Redhat = 0xF7BC, - - /// - /// The Font Awesome "redo" icon unicode character. - /// - Redo = 0xF01E, - - /// - /// The Font Awesome "redo-alt" icon unicode character. - /// - RedoAlt = 0xF2F9, - - /// - /// The Font Awesome "red-river" icon unicode character. - /// - RedRiver = 0xF3E3, - - /// - /// The Font Awesome "registered" icon unicode character. - /// - Registered = 0xF25D, - - /// - /// The Font Awesome "remove-format" icon unicode character. - /// - RemoveFormat = 0xF87D, - - /// - /// The Font Awesome "renren" icon unicode character. - /// - Renren = 0xF18B, - - /// - /// The Font Awesome "reply" icon unicode character. - /// - Reply = 0xF3E5, - - /// - /// The Font Awesome "reply-all" icon unicode character. - /// - ReplyAll = 0xF122, - - /// - /// The Font Awesome "replyd" icon unicode character. - /// - Replyd = 0xF3E6, - - /// - /// The Font Awesome "republican" icon unicode character. - /// - Republican = 0xF75E, - - /// - /// The Font Awesome "researchgate" icon unicode character. - /// - Researchgate = 0xF4F8, - - /// - /// The Font Awesome "resolving" icon unicode character. - /// - Resolving = 0xF3E7, - - /// - /// The Font Awesome "restroom" icon unicode character. - /// - Restroom = 0xF7BD, - - /// - /// The Font Awesome "retweet" icon unicode character. - /// - Retweet = 0xF079, - - /// - /// The Font Awesome "rev" icon unicode character. - /// - Rev = 0xF5B2, - - /// - /// The Font Awesome "ribbon" icon unicode character. - /// - Ribbon = 0xF4D6, - - /// - /// The Font Awesome "ring" icon unicode character. - /// - Ring = 0xF70B, - - /// - /// The Font Awesome "road" icon unicode character. - /// - Road = 0xF018, - - /// - /// The Font Awesome "robot" icon unicode character. - /// - Robot = 0xF544, - - /// - /// The Font Awesome "rocket" icon unicode character. - /// - Rocket = 0xF135, - - /// - /// The Font Awesome "rocketchat" icon unicode character. - /// - Rocketchat = 0xF3E8, - - /// - /// The Font Awesome "rockrms" icon unicode character. - /// - Rockrms = 0xF3E9, - - /// - /// The Font Awesome "route" icon unicode character. - /// - Route = 0xF4D7, - - /// - /// The Font Awesome "r-project" icon unicode character. - /// - RProject = 0xF4F7, - - /// - /// The Font Awesome "rss" icon unicode character. - /// - Rss = 0xF09E, - - /// - /// The Font Awesome "rss-square" icon unicode character. - /// - RssSquare = 0xF143, - - /// - /// The Font Awesome "ruble-sign" icon unicode character. - /// - RubleSign = 0xF158, - - /// - /// The Font Awesome "ruler" icon unicode character. - /// - Ruler = 0xF545, - - /// - /// The Font Awesome "ruler-combined" icon unicode character. - /// - RulerCombined = 0xF546, - - /// - /// The Font Awesome "ruler-horizontal" icon unicode character. - /// - RulerHorizontal = 0xF547, - - /// - /// The Font Awesome "ruler-vertical" icon unicode character. - /// - RulerVertical = 0xF548, - - /// - /// The Font Awesome "running" icon unicode character. - /// - Running = 0xF70C, - - /// - /// The Font Awesome "rupee-sign" icon unicode character. - /// - RupeeSign = 0xF156, - - /// - /// The Font Awesome "sad-cry" icon unicode character. - /// - SadCry = 0xF5B3, - - /// - /// The Font Awesome "sad-tear" icon unicode character. - /// - SadTear = 0xF5B4, - - /// - /// The Font Awesome "safari" icon unicode character. - /// - Safari = 0xF267, - - /// - /// The Font Awesome "salesforce" icon unicode character. - /// - Salesforce = 0xF83B, - - /// - /// The Font Awesome "sass" icon unicode character. - /// - Sass = 0xF41E, - - /// - /// The Font Awesome "satellite" icon unicode character. - /// - Satellite = 0xF7BF, - - /// - /// The Font Awesome "satellite-dish" icon unicode character. - /// - SatelliteDish = 0xF7C0, - - /// - /// The Font Awesome "save" icon unicode character. - /// - Save = 0xF0C7, - - /// - /// The Font Awesome "schlix" icon unicode character. - /// - Schlix = 0xF3EA, - - /// - /// The Font Awesome "school" icon unicode character. - /// - School = 0xF549, - - /// - /// The Font Awesome "screwdriver" icon unicode character. - /// - Screwdriver = 0xF54A, - - /// - /// The Font Awesome "scribd" icon unicode character. - /// - Scribd = 0xF28A, - - /// - /// The Font Awesome "scroll" icon unicode character. - /// - Scroll = 0xF70E, - - /// - /// The Font Awesome "sd-card" icon unicode character. - /// - SdCard = 0xF7C2, - - /// - /// The Font Awesome "search" icon unicode character. - /// - Search = 0xF002, - - /// - /// The Font Awesome "search-dollar" icon unicode character. - /// - SearchDollar = 0xF688, - - /// - /// The Font Awesome "searchengin" icon unicode character. - /// - Searchengin = 0xF3EB, - - /// - /// The Font Awesome "search-location" icon unicode character. - /// - SearchLocation = 0xF689, - - /// - /// The Font Awesome "search-minus" icon unicode character. - /// - SearchMinus = 0xF010, - - /// - /// The Font Awesome "search-plus" icon unicode character. - /// - SearchPlus = 0xF00E, - - /// - /// The Font Awesome "seedling" icon unicode character. - /// - Seedling = 0xF4D8, - - /// - /// The Font Awesome "sellcast" icon unicode character. - /// - Sellcast = 0xF2DA, - - /// - /// The Font Awesome "sellsy" icon unicode character. - /// - Sellsy = 0xF213, - - /// - /// The Font Awesome "server" icon unicode character. - /// - Server = 0xF233, - - /// - /// The Font Awesome "servicestack" icon unicode character. - /// - Servicestack = 0xF3EC, - - /// - /// The Font Awesome "shapes" icon unicode character. - /// - Shapes = 0xF61F, - - /// - /// The Font Awesome "share" icon unicode character. - /// - Share = 0xF064, - - /// - /// The Font Awesome "share-alt" icon unicode character. - /// - ShareAlt = 0xF1E0, - - /// - /// The Font Awesome "share-alt-square" icon unicode character. - /// - ShareAltSquare = 0xF1E1, - - /// - /// The Font Awesome "share-square" icon unicode character. - /// - ShareSquare = 0xF14D, - - /// - /// The Font Awesome "shekel-sign" icon unicode character. - /// - ShekelSign = 0xF20B, - - /// - /// The Font Awesome "shield-alt" icon unicode character. - /// - ShieldAlt = 0xF3ED, - - /// - /// The Font Awesome "ship" icon unicode character. - /// - Ship = 0xF21A, - - /// - /// The Font Awesome "shipping-fast" icon unicode character. - /// - ShippingFast = 0xF48B, - - /// - /// The Font Awesome "shirtsinbulk" icon unicode character. - /// - Shirtsinbulk = 0xF214, - - /// - /// The Font Awesome "shoe-prints" icon unicode character. - /// - ShoePrints = 0xF54B, - - /// - /// The Font Awesome "shopify" icon unicode character. - /// - Shopify = 0xF957, - - /// - /// The Font Awesome "shopping-bag" icon unicode character. - /// - ShoppingBag = 0xF290, - - /// - /// The Font Awesome "shopping-basket" icon unicode character. - /// - ShoppingBasket = 0xF291, - - /// - /// The Font Awesome "shopping-cart" icon unicode character. - /// - ShoppingCart = 0xF07A, - - /// - /// The Font Awesome "shopware" icon unicode character. - /// - Shopware = 0xF5B5, - - /// - /// The Font Awesome "shower" icon unicode character. - /// - Shower = 0xF2CC, - - /// - /// The Font Awesome "shuttle-van" icon unicode character. - /// - ShuttleVan = 0xF5B6, - - /// - /// The Font Awesome "sign" icon unicode character. - /// - Sign = 0xF4D9, - - /// - /// The Font Awesome "signal" icon unicode character. - /// - Signal = 0xF012, - - /// - /// The Font Awesome "signature" icon unicode character. - /// - Signature = 0xF5B7, - - /// - /// The Font Awesome "sign-in-alt" icon unicode character. - /// - SignInAlt = 0xF2F6, - - /// - /// The Font Awesome "sign-language" icon unicode character. - /// - SignLanguage = 0xF2A7, - - /// - /// The Font Awesome "sign-out-alt" icon unicode character. - /// - SignOutAlt = 0xF2F5, - - /// - /// The Font Awesome "sim-card" icon unicode character. - /// - SimCard = 0xF7C4, - - /// - /// The Font Awesome "simplybuilt" icon unicode character. - /// - Simplybuilt = 0xF215, - - /// - /// The Font Awesome "sistrix" icon unicode character. - /// - Sistrix = 0xF3EE, - - /// - /// The Font Awesome "sitemap" icon unicode character. - /// - Sitemap = 0xF0E8, - - /// - /// The Font Awesome "sith" icon unicode character. - /// - Sith = 0xF512, - - /// - /// The Font Awesome "skating" icon unicode character. - /// - Skating = 0xF7C5, - - /// - /// The Font Awesome "sketch" icon unicode character. - /// - Sketch = 0xF7C6, - - /// - /// The Font Awesome "skiing" icon unicode character. - /// - Skiing = 0xF7C9, - - /// - /// The Font Awesome "skiing-nordic" icon unicode character. - /// - SkiingNordic = 0xF7CA, - - /// - /// The Font Awesome "skull" icon unicode character. - /// - Skull = 0xF54C, - - /// - /// The Font Awesome "skull-crossbones" icon unicode character. - /// - SkullCrossbones = 0xF714, - - /// - /// The Font Awesome "skyatlas" icon unicode character. - /// - Skyatlas = 0xF216, - - /// - /// The Font Awesome "skype" icon unicode character. - /// - Skype = 0xF17E, - - /// - /// The Font Awesome "slack" icon unicode character. - /// - Slack = 0xF198, - - /// - /// The Font Awesome "slack-hash" icon unicode character. - /// - SlackHash = 0xF3EF, - - /// - /// The Font Awesome "slash" icon unicode character. - /// - Slash = 0xF715, - - /// - /// The Font Awesome "sleigh" icon unicode character. - /// - Sleigh = 0xF7CC, - - /// - /// The Font Awesome "sliders-h" icon unicode character. - /// - SlidersH = 0xF1DE, - - /// - /// The Font Awesome "slideshare" icon unicode character. - /// - Slideshare = 0xF1E7, - - /// - /// The Font Awesome "smile" icon unicode character. - /// - Smile = 0xF118, - - /// - /// The Font Awesome "smile-beam" icon unicode character. - /// - SmileBeam = 0xF5B8, - - /// - /// The Font Awesome "smile-wink" icon unicode character. - /// - SmileWink = 0xF4DA, - - /// - /// The Font Awesome "smog" icon unicode character. - /// - Smog = 0xF75F, - - /// - /// The Font Awesome "smoking" icon unicode character. - /// - Smoking = 0xF48D, - - /// - /// The Font Awesome "smoking-ban" icon unicode character. - /// - SmokingBan = 0xF54D, - - /// - /// The Font Awesome "sms" icon unicode character. - /// - Sms = 0xF7CD, - - /// - /// The Font Awesome "snapchat" icon unicode character. - /// - Snapchat = 0xF2AB, - - /// - /// The Font Awesome "snapchat-ghost" icon unicode character. - /// - SnapchatGhost = 0xF2AC, - - /// - /// The Font Awesome "snapchat-square" icon unicode character. - /// - SnapchatSquare = 0xF2AD, - - /// - /// The Font Awesome "snowboarding" icon unicode character. - /// - Snowboarding = 0xF7CE, - - /// - /// The Font Awesome "snowflake" icon unicode character. - /// - Snowflake = 0xF2DC, - - /// - /// The Font Awesome "snowman" icon unicode character. - /// - Snowman = 0xF7D0, - - /// - /// The Font Awesome "snowplow" icon unicode character. - /// - Snowplow = 0xF7D2, - - /// - /// The Font Awesome "socks" icon unicode character. - /// - Socks = 0xF696, - - /// - /// The Font Awesome "solar-panel" icon unicode character. - /// - SolarPanel = 0xF5BA, - - /// - /// The Font Awesome "sort" icon unicode character. - /// - Sort = 0xF0DC, - - /// - /// The Font Awesome "sort-alpha-down" icon unicode character. - /// - SortAlphaDown = 0xF15D, - - /// - /// The Font Awesome "sort-alpha-down-alt" icon unicode character. - /// - SortAlphaDownAlt = 0xF881, - - /// - /// The Font Awesome "sort-alpha-up" icon unicode character. - /// - SortAlphaUp = 0xF15E, - - /// - /// The Font Awesome "sort-alpha-up-alt" icon unicode character. - /// - SortAlphaUpAlt = 0xF882, - - /// - /// The Font Awesome "sort-amount-down" icon unicode character. - /// - SortAmountDown = 0xF160, - - /// - /// The Font Awesome "sort-amount-down-alt" icon unicode character. - /// - SortAmountDownAlt = 0xF884, - - /// - /// The Font Awesome "sort-amount-up" icon unicode character. - /// - SortAmountUp = 0xF161, - - /// - /// The Font Awesome "sort-amount-up-alt" icon unicode character. - /// - SortAmountUpAlt = 0xF885, - - /// - /// The Font Awesome "sort-down" icon unicode character. - /// - SortDown = 0xF0DD, - - /// - /// The Font Awesome "sort-numeric-down" icon unicode character. - /// - SortNumericDown = 0xF162, - - /// - /// The Font Awesome "sort-numeric-down-alt" icon unicode character. - /// - SortNumericDownAlt = 0xF886, - - /// - /// The Font Awesome "sort-numeric-up" icon unicode character. - /// - SortNumericUp = 0xF163, - - /// - /// The Font Awesome "sort-numeric-up-alt" icon unicode character. - /// - SortNumericUpAlt = 0xF887, - - /// - /// The Font Awesome "sort-up" icon unicode character. - /// - SortUp = 0xF0DE, - - /// - /// The Font Awesome "soundcloud" icon unicode character. - /// - Soundcloud = 0xF1BE, - - /// - /// The Font Awesome "sourcetree" icon unicode character. - /// - Sourcetree = 0xF7D3, - - /// - /// The Font Awesome "spa" icon unicode character. - /// - Spa = 0xF5BB, - - /// - /// The Font Awesome "space-shuttle" icon unicode character. - /// - SpaceShuttle = 0xF197, - - /// - /// The Font Awesome "speakap" icon unicode character. - /// - Speakap = 0xF3F3, - - /// - /// The Font Awesome "speaker-deck" icon unicode character. - /// - SpeakerDeck = 0xF83C, - - /// - /// The Font Awesome "spell-check" icon unicode character. - /// - SpellCheck = 0xF891, - - /// - /// The Font Awesome "spider" icon unicode character. - /// - Spider = 0xF717, - - /// - /// The Font Awesome "spinner" icon unicode character. - /// - Spinner = 0xF110, - - /// - /// The Font Awesome "splotch" icon unicode character. - /// - Splotch = 0xF5BC, - - /// - /// The Font Awesome "spotify" icon unicode character. - /// - Spotify = 0xF1BC, - - /// - /// The Font Awesome "spray-can" icon unicode character. - /// - SprayCan = 0xF5BD, - - /// - /// The Font Awesome "square" icon unicode character. - /// - Square = 0xF0C8, - - /// - /// The Font Awesome "square-full" icon unicode character. - /// - SquareFull = 0xF45C, - - /// - /// The Font Awesome "square-root-alt" icon unicode character. - /// - SquareRootAlt = 0xF698, - - /// - /// The Font Awesome "squarespace" icon unicode character. - /// - Squarespace = 0xF5BE, - - /// - /// The Font Awesome "stack-exchange" icon unicode character. - /// - StackExchange = 0xF18D, - - /// - /// The Font Awesome "stack-overflow" icon unicode character. - /// - StackOverflow = 0xF16C, - - /// - /// The Font Awesome "stackpath" icon unicode character. - /// - Stackpath = 0xF842, - - /// - /// The Font Awesome "stamp" icon unicode character. - /// - Stamp = 0xF5BF, - - /// - /// The Font Awesome "star" icon unicode character. - /// - Star = 0xF005, - - /// - /// The Font Awesome "star-and-crescent" icon unicode character. - /// - StarAndCrescent = 0xF699, - - /// - /// The Font Awesome "star-half" icon unicode character. - /// - StarHalf = 0xF089, - - /// - /// The Font Awesome "star-half-alt" icon unicode character. - /// - StarHalfAlt = 0xF5C0, - - /// - /// The Font Awesome "star-of-david" icon unicode character. - /// - StarOfDavid = 0xF69A, - - /// - /// The Font Awesome "star-of-life" icon unicode character. - /// - StarOfLife = 0xF621, - - /// - /// The Font Awesome "staylinked" icon unicode character. - /// - Staylinked = 0xF3F5, - - /// - /// The Font Awesome "steam" icon unicode character. - /// - Steam = 0xF1B6, - - /// - /// The Font Awesome "steam-square" icon unicode character. - /// - SteamSquare = 0xF1B7, - - /// - /// The Font Awesome "steam-symbol" icon unicode character. - /// - SteamSymbol = 0xF3F6, - - /// - /// The Font Awesome "step-backward" icon unicode character. - /// - StepBackward = 0xF048, - - /// - /// The Font Awesome "step-forward" icon unicode character. - /// - StepForward = 0xF051, - - /// - /// The Font Awesome "stethoscope" icon unicode character. - /// - Stethoscope = 0xF0F1, - - /// - /// The Font Awesome "sticker-mule" icon unicode character. - /// - StickerMule = 0xF3F7, - - /// - /// The Font Awesome "sticky-note" icon unicode character. - /// - StickyNote = 0xF249, - - /// - /// The Font Awesome "stop" icon unicode character. - /// - Stop = 0xF04D, - - /// - /// The Font Awesome "stop-circle" icon unicode character. - /// - StopCircle = 0xF28D, - - /// - /// The Font Awesome "stopwatch" icon unicode character. - /// - Stopwatch = 0xF2F2, - - /// - /// The Font Awesome "store" icon unicode character. - /// - Store = 0xF54E, - - /// - /// The Font Awesome "store-alt" icon unicode character. - /// - StoreAlt = 0xF54F, - - /// - /// The Font Awesome "strava" icon unicode character. - /// - Strava = 0xF428, - - /// - /// The Font Awesome "stream" icon unicode character. - /// - Stream = 0xF550, - - /// - /// The Font Awesome "street-view" icon unicode character. - /// - StreetView = 0xF21D, - - /// - /// The Font Awesome "strikethrough" icon unicode character. - /// - Strikethrough = 0xF0CC, - - /// - /// The Font Awesome "stripe" icon unicode character. - /// - Stripe = 0xF429, - - /// - /// The Font Awesome "stripe-s" icon unicode character. - /// - StripeS = 0xF42A, - - /// - /// The Font Awesome "stroopwafel" icon unicode character. - /// - Stroopwafel = 0xF551, - - /// - /// The Font Awesome "studiovinari" icon unicode character. - /// - Studiovinari = 0xF3F8, - - /// - /// The Font Awesome "stumbleupon" icon unicode character. - /// - Stumbleupon = 0xF1A4, - - /// - /// The Font Awesome "stumbleupon-circle" icon unicode character. - /// - StumbleuponCircle = 0xF1A3, - - /// - /// The Font Awesome "subscript" icon unicode character. - /// - Subscript = 0xF12C, - - /// - /// The Font Awesome "subway" icon unicode character. - /// - Subway = 0xF239, - - /// - /// The Font Awesome "suitcase" icon unicode character. - /// - Suitcase = 0xF0F2, - - /// - /// The Font Awesome "suitcase-rolling" icon unicode character. - /// - SuitcaseRolling = 0xF5C1, - - /// - /// The Font Awesome "sun" icon unicode character. - /// - Sun = 0xF185, - - /// - /// The Font Awesome "superpowers" icon unicode character. - /// - Superpowers = 0xF2DD, - - /// - /// The Font Awesome "superscript" icon unicode character. - /// - Superscript = 0xF12B, - - /// - /// The Font Awesome "supple" icon unicode character. - /// - Supple = 0xF3F9, - - /// - /// The Font Awesome "surprise" icon unicode character. - /// - Surprise = 0xF5C2, - - /// - /// The Font Awesome "suse" icon unicode character. - /// - Suse = 0xF7D6, - - /// - /// The Font Awesome "swatchbook" icon unicode character. - /// - Swatchbook = 0xF5C3, - - /// - /// The Font Awesome "swift" icon unicode character. - /// - Swift = 0xF8E1, - - /// - /// The Font Awesome "swimmer" icon unicode character. - /// - Swimmer = 0xF5C4, - - /// - /// The Font Awesome "swimming-pool" icon unicode character. - /// - SwimmingPool = 0xF5C5, - - /// - /// The Font Awesome "symfony" icon unicode character. - /// - Symfony = 0xF83D, - - /// - /// The Font Awesome "synagogue" icon unicode character. - /// - Synagogue = 0xF69B, - - /// - /// The Font Awesome "sync" icon unicode character. - /// - Sync = 0xF021, - - /// - /// The Font Awesome "sync-alt" icon unicode character. - /// - SyncAlt = 0xF2F1, - - /// - /// The Font Awesome "syringe" icon unicode character. - /// - Syringe = 0xF48E, - - /// - /// The Font Awesome "table" icon unicode character. - /// - Table = 0xF0CE, - - /// - /// The Font Awesome "tablet" icon unicode character. - /// - Tablet = 0xF10A, - - /// - /// The Font Awesome "tablet-alt" icon unicode character. - /// - TabletAlt = 0xF3FA, - - /// - /// The Font Awesome "table-tennis" icon unicode character. - /// - TableTennis = 0xF45D, - - /// - /// The Font Awesome "tablets" icon unicode character. - /// - Tablets = 0xF490, - - /// - /// The Font Awesome "tachometer-alt" icon unicode character. - /// - TachometerAlt = 0xF3FD, - - /// - /// The Font Awesome "tag" icon unicode character. - /// - Tag = 0xF02B, - - /// - /// The Font Awesome "tags" icon unicode character. - /// - Tags = 0xF02C, - - /// - /// The Font Awesome "tape" icon unicode character. - /// - Tape = 0xF4DB, - - /// - /// The Font Awesome "tasks" icon unicode character. - /// - Tasks = 0xF0AE, - - /// - /// The Font Awesome "taxi" icon unicode character. - /// - Taxi = 0xF1BA, - - /// - /// The Font Awesome "teamspeak" icon unicode character. - /// - Teamspeak = 0xF4F9, - - /// - /// The Font Awesome "teeth" icon unicode character. - /// - Teeth = 0xF62E, - - /// - /// The Font Awesome "teeth-open" icon unicode character. - /// - TeethOpen = 0xF62F, - - /// - /// The Font Awesome "telegram" icon unicode character. - /// - Telegram = 0xF2C6, - - /// - /// The Font Awesome "telegram-plane" icon unicode character. - /// - TelegramPlane = 0xF3FE, - - /// - /// The Font Awesome "temperature-high" icon unicode character. - /// - TemperatureHigh = 0xF769, - - /// - /// The Font Awesome "temperature-low" icon unicode character. - /// - TemperatureLow = 0xF76B, - - /// - /// The Font Awesome "tencent-weibo" icon unicode character. - /// - TencentWeibo = 0xF1D5, - - /// - /// The Font Awesome "tenge" icon unicode character. - /// - Tenge = 0xF7D7, - - /// - /// The Font Awesome "terminal" icon unicode character. - /// - Terminal = 0xF120, - - /// - /// The Font Awesome "text-height" icon unicode character. - /// - TextHeight = 0xF034, - - /// - /// The Font Awesome "text-width" icon unicode character. - /// - TextWidth = 0xF035, - - /// - /// The Font Awesome "th" icon unicode character. - /// - Th = 0xF00A, - - /// - /// The Font Awesome "theater-masks" icon unicode character. - /// - TheaterMasks = 0xF630, - - /// - /// The Font Awesome "themeco" icon unicode character. - /// - Themeco = 0xF5C6, - - /// - /// The Font Awesome "themeisle" icon unicode character. - /// - Themeisle = 0xF2B2, - - /// - /// The Font Awesome "the-red-yeti" icon unicode character. - /// - TheRedYeti = 0xF69D, - - /// - /// The Font Awesome "thermometer" icon unicode character. - /// - Thermometer = 0xF491, - - /// - /// The Font Awesome "thermometer-empty" icon unicode character. - /// - ThermometerEmpty = 0xF2CB, - - /// - /// The Font Awesome "thermometer-full" icon unicode character. - /// - ThermometerFull = 0xF2C7, - - /// - /// The Font Awesome "thermometer-half" icon unicode character. - /// - ThermometerHalf = 0xF2C9, - - /// - /// The Font Awesome "thermometer-quarter" icon unicode character. - /// - ThermometerQuarter = 0xF2CA, - - /// - /// The Font Awesome "thermometer-three-quarters" icon unicode character. - /// - ThermometerThreeQuarters = 0xF2C8, - - /// - /// The Font Awesome "think-peaks" icon unicode character. - /// - ThinkPeaks = 0xF731, - - /// - /// The Font Awesome "th-large" icon unicode character. - /// - ThLarge = 0xF009, - - /// - /// The Font Awesome "th-list" icon unicode character. - /// - ThList = 0xF00B, - - /// - /// The Font Awesome "thumbs-down" icon unicode character. - /// - ThumbsDown = 0xF165, - - /// - /// The Font Awesome "thumbs-up" icon unicode character. - /// - ThumbsUp = 0xF164, - - /// - /// The Font Awesome "thumbtack" icon unicode character. - /// - Thumbtack = 0xF08D, - - /// - /// The Font Awesome "ticket-alt" icon unicode character. - /// - TicketAlt = 0xF3FF, - - /// - /// The Font Awesome "times" icon unicode character. - /// - Times = 0xF00D, - - /// - /// The Font Awesome "times-circle" icon unicode character. - /// - TimesCircle = 0xF057, - - /// - /// The Font Awesome "tint" icon unicode character. - /// - Tint = 0xF043, - - /// - /// The Font Awesome "tint-slash" icon unicode character. - /// - TintSlash = 0xF5C7, - - /// - /// The Font Awesome "tired" icon unicode character. - /// - Tired = 0xF5C8, - - /// - /// The Font Awesome "toggle-off" icon unicode character. - /// - ToggleOff = 0xF204, - - /// - /// The Font Awesome "toggle-on" icon unicode character. - /// - ToggleOn = 0xF205, - - /// - /// The Font Awesome "toilet" icon unicode character. - /// - Toilet = 0xF7D8, - - /// - /// The Font Awesome "toilet-paper" icon unicode character. - /// - ToiletPaper = 0xF71E, - - /// - /// The Font Awesome "toolbox" icon unicode character. - /// - Toolbox = 0xF552, - - /// - /// The Font Awesome "tools" icon unicode character. - /// - Tools = 0xF7D9, - - /// - /// The Font Awesome "tooth" icon unicode character. - /// - Tooth = 0xF5C9, - - /// - /// The Font Awesome "torah" icon unicode character. - /// - Torah = 0xF6A0, - - /// - /// The Font Awesome "torii-gate" icon unicode character. - /// - ToriiGate = 0xF6A1, - - /// - /// The Font Awesome "tractor" icon unicode character. - /// - Tractor = 0xF722, - - /// - /// The Font Awesome "trade-federation" icon unicode character. - /// - TradeFederation = 0xF513, - - /// - /// The Font Awesome "trademark" icon unicode character. - /// - Trademark = 0xF25C, - - /// - /// The Font Awesome "traffic-light" icon unicode character. - /// - TrafficLight = 0xF637, - - /// - /// The Font Awesome "trailer" icon unicode character. - /// - Trailer = 0xF941, - - /// - /// The Font Awesome "train" icon unicode character. - /// - Train = 0xF238, - - /// - /// The Font Awesome "tram" icon unicode character. - /// - Tram = 0xF7DA, - - /// - /// The Font Awesome "transgender" icon unicode character. - /// - Transgender = 0xF224, - - /// - /// The Font Awesome "transgender-alt" icon unicode character. - /// - TransgenderAlt = 0xF225, - - /// - /// The Font Awesome "trash" icon unicode character. - /// - Trash = 0xF1F8, - - /// - /// The Font Awesome "trash-alt" icon unicode character. - /// - TrashAlt = 0xF2ED, - - /// - /// The Font Awesome "trash-restore" icon unicode character. - /// - TrashRestore = 0xF829, - - /// - /// The Font Awesome "trash-restore-alt" icon unicode character. - /// - TrashRestoreAlt = 0xF82A, - - /// - /// The Font Awesome "tree" icon unicode character. - /// - Tree = 0xF1BB, - - /// - /// The Font Awesome "trello" icon unicode character. - /// - Trello = 0xF181, - - /// - /// The Font Awesome "tripadvisor" icon unicode character. - /// - Tripadvisor = 0xF262, - - /// - /// The Font Awesome "trophy" icon unicode character. - /// - Trophy = 0xF091, - - /// - /// The Font Awesome "truck" icon unicode character. - /// - Truck = 0xF0D1, - - /// - /// The Font Awesome "truck-loading" icon unicode character. - /// - TruckLoading = 0xF4DE, - - /// - /// The Font Awesome "truck-monster" icon unicode character. - /// - TruckMonster = 0xF63B, - - /// - /// The Font Awesome "truck-moving" icon unicode character. - /// - TruckMoving = 0xF4DF, - - /// - /// The Font Awesome "truck-pickup" icon unicode character. - /// - TruckPickup = 0xF63C, - - /// - /// The Font Awesome "tshirt" icon unicode character. - /// - Tshirt = 0xF553, - - /// - /// The Font Awesome "tty" icon unicode character. - /// - Tty = 0xF1E4, - - /// - /// The Font Awesome "tumblr" icon unicode character. - /// - Tumblr = 0xF173, - - /// - /// The Font Awesome "tumblr-square" icon unicode character. - /// - TumblrSquare = 0xF174, - - /// - /// The Font Awesome "tv" icon unicode character. - /// - Tv = 0xF26C, - - /// - /// The Font Awesome "twitch" icon unicode character. - /// - Twitch = 0xF1E8, - - /// - /// The Font Awesome "twitter" icon unicode character. - /// - Twitter = 0xF099, - - /// - /// The Font Awesome "twitter-square" icon unicode character. - /// - TwitterSquare = 0xF081, - - /// - /// The Font Awesome "typo3" icon unicode character. - /// - Typo3 = 0xF42B, - - /// - /// The Font Awesome "uber" icon unicode character. - /// - Uber = 0xF402, - - /// - /// The Font Awesome "ubuntu" icon unicode character. - /// - Ubuntu = 0xF7DF, - - /// - /// The Font Awesome "uikit" icon unicode character. - /// - Uikit = 0xF403, - - /// - /// The Font Awesome "umbraco" icon unicode character. - /// - Umbraco = 0xF8E8, - - /// - /// The Font Awesome "umbrella" icon unicode character. - /// - Umbrella = 0xF0E9, - - /// - /// The Font Awesome "umbrella-beach" icon unicode character. - /// - UmbrellaBeach = 0xF5CA, - - /// - /// The Font Awesome "underline" icon unicode character. - /// - Underline = 0xF0CD, - - /// - /// The Font Awesome "undo" icon unicode character. - /// - Undo = 0xF0E2, - - /// - /// The Font Awesome "undo-alt" icon unicode character. - /// - UndoAlt = 0xF2EA, - - /// - /// The Font Awesome "uniregistry" icon unicode character. - /// - Uniregistry = 0xF404, - - /// - /// The Font Awesome "unity" icon unicode character. - /// - Unity = 0xF949, - - /// - /// The Font Awesome "universal-access" icon unicode character. - /// - UniversalAccess = 0xF29A, - - /// - /// The Font Awesome "university" icon unicode character. - /// - University = 0xF19C, - - /// - /// The Font Awesome "unlink" icon unicode character. - /// - Unlink = 0xF127, - - /// - /// The Font Awesome "unlock" icon unicode character. - /// - Unlock = 0xF09C, - - /// - /// The Font Awesome "unlock-alt" icon unicode character. - /// - UnlockAlt = 0xF13E, - - /// - /// The Font Awesome "untappd" icon unicode character. - /// - Untappd = 0xF405, - - /// - /// The Font Awesome "upload" icon unicode character. - /// - Upload = 0xF093, - - /// - /// The Font Awesome "ups" icon unicode character. - /// - Ups = 0xF7E0, - - /// - /// The Font Awesome "usb" icon unicode character. - /// - Usb = 0xF287, - - /// - /// The Font Awesome "user" icon unicode character. - /// - User = 0xF007, - - /// - /// The Font Awesome "user-alt" icon unicode character. - /// - UserAlt = 0xF406, - - /// - /// The Font Awesome "user-alt-slash" icon unicode character. - /// - UserAltSlash = 0xF4FA, - - /// - /// The Font Awesome "user-astronaut" icon unicode character. - /// - UserAstronaut = 0xF4FB, - - /// - /// The Font Awesome "user-check" icon unicode character. - /// - UserCheck = 0xF4FC, - - /// - /// The Font Awesome "user-circle" icon unicode character. - /// - UserCircle = 0xF2BD, - - /// - /// The Font Awesome "user-clock" icon unicode character. - /// - UserClock = 0xF4FD, - - /// - /// The Font Awesome "user-cog" icon unicode character. - /// - UserCog = 0xF4FE, - - /// - /// The Font Awesome "user-edit" icon unicode character. - /// - UserEdit = 0xF4FF, - - /// - /// The Font Awesome "user-friends" icon unicode character. - /// - UserFriends = 0xF500, - - /// - /// The Font Awesome "user-graduate" icon unicode character. - /// - UserGraduate = 0xF501, - - /// - /// The Font Awesome "user-injured" icon unicode character. - /// - UserInjured = 0xF728, - - /// - /// The Font Awesome "user-lock" icon unicode character. - /// - UserLock = 0xF502, - - /// - /// The Font Awesome "user-md" icon unicode character. - /// - UserMd = 0xF0F0, - - /// - /// The Font Awesome "user-minus" icon unicode character. - /// - UserMinus = 0xF503, - - /// - /// The Font Awesome "user-ninja" icon unicode character. - /// - UserNinja = 0xF504, - - /// - /// The Font Awesome "user-nurse" icon unicode character. - /// - UserNurse = 0xF82F, - - /// - /// The Font Awesome "user-plus" icon unicode character. - /// - UserPlus = 0xF234, - - /// - /// The Font Awesome "users" icon unicode character. - /// - Users = 0xF0C0, - - /// - /// The Font Awesome "users-cog" icon unicode character. - /// - UsersCog = 0xF509, - - /// - /// The Font Awesome "user-secret" icon unicode character. - /// - UserSecret = 0xF21B, - - /// - /// The Font Awesome "user-shield" icon unicode character. - /// - UserShield = 0xF505, - - /// - /// The Font Awesome "user-slash" icon unicode character. - /// - UserSlash = 0xF506, - - /// - /// The Font Awesome "user-tag" icon unicode character. - /// - UserTag = 0xF507, - - /// - /// The Font Awesome "user-tie" icon unicode character. - /// - UserTie = 0xF508, - - /// - /// The Font Awesome "user-times" icon unicode character. - /// - UserTimes = 0xF235, - - /// - /// The Font Awesome "usps" icon unicode character. - /// - Usps = 0xF7E1, - - /// - /// The Font Awesome "ussunnah" icon unicode character. - /// - Ussunnah = 0xF407, - - /// - /// The Font Awesome "utensils" icon unicode character. - /// - Utensils = 0xF2E7, - - /// - /// The Font Awesome "utensil-spoon" icon unicode character. - /// - UtensilSpoon = 0xF2E5, - - /// - /// The Font Awesome "vaadin" icon unicode character. - /// - Vaadin = 0xF408, - - /// - /// The Font Awesome "vector-square" icon unicode character. - /// - VectorSquare = 0xF5CB, - - /// - /// The Font Awesome "venus" icon unicode character. - /// - Venus = 0xF221, - - /// - /// The Font Awesome "venus-double" icon unicode character. - /// - VenusDouble = 0xF226, - - /// - /// The Font Awesome "venus-mars" icon unicode character. - /// - VenusMars = 0xF228, - - /// - /// The Font Awesome "viacoin" icon unicode character. - /// - Viacoin = 0xF237, - - /// - /// The Font Awesome "viadeo" icon unicode character. - /// - Viadeo = 0xF2A9, - - /// - /// The Font Awesome "viadeo-square" icon unicode character. - /// - ViadeoSquare = 0xF2AA, - - /// - /// The Font Awesome "vial" icon unicode character. - /// - Vial = 0xF492, - - /// - /// The Font Awesome "vials" icon unicode character. - /// - Vials = 0xF493, - - /// - /// The Font Awesome "viber" icon unicode character. - /// - Viber = 0xF409, - - /// - /// The Font Awesome "video" icon unicode character. - /// - Video = 0xF03D, - - /// - /// The Font Awesome "video-slash" icon unicode character. - /// - VideoSlash = 0xF4E2, - - /// - /// The Font Awesome "vihara" icon unicode character. - /// - Vihara = 0xF6A7, - - /// - /// The Font Awesome "vimeo" icon unicode character. - /// - Vimeo = 0xF40A, - - /// - /// The Font Awesome "vimeo-square" icon unicode character. - /// - VimeoSquare = 0xF194, - - /// - /// The Font Awesome "vimeo-v" icon unicode character. - /// - VimeoV = 0xF27D, - - /// - /// The Font Awesome "vine" icon unicode character. - /// - Vine = 0xF1CA, - - /// - /// The Font Awesome "vk" icon unicode character. - /// - Vk = 0xF189, - - /// - /// The Font Awesome "vnv" icon unicode character. - /// - Vnv = 0xF40B, - - /// - /// The Font Awesome "voicemail" icon unicode character. - /// - Voicemail = 0xF897, - - /// - /// The Font Awesome "volleyball-ball" icon unicode character. - /// - VolleyballBall = 0xF45F, - - /// - /// The Font Awesome "volume-down" icon unicode character. - /// - VolumeDown = 0xF027, - - /// - /// The Font Awesome "volume-mute" icon unicode character. - /// - VolumeMute = 0xF6A9, - - /// - /// The Font Awesome "volume-off" icon unicode character. - /// - VolumeOff = 0xF026, - - /// - /// The Font Awesome "volume-up" icon unicode character. - /// - VolumeUp = 0xF028, - - /// - /// The Font Awesome "vote-yea" icon unicode character. - /// - VoteYea = 0xF772, - - /// - /// The Font Awesome "vr-cardboard" icon unicode character. - /// - VrCardboard = 0xF729, - - /// - /// The Font Awesome "vuejs" icon unicode character. - /// - Vuejs = 0xF41F, - - /// - /// The Font Awesome "walking" icon unicode character. - /// - Walking = 0xF554, - - /// - /// The Font Awesome "wallet" icon unicode character. - /// - Wallet = 0xF555, - - /// - /// The Font Awesome "warehouse" icon unicode character. - /// - Warehouse = 0xF494, - - /// - /// The Font Awesome "water" icon unicode character. - /// - Water = 0xF773, - - /// - /// The Font Awesome "wave-square" icon unicode character. - /// - WaveSquare = 0xF83E, - - /// - /// The Font Awesome "waze" icon unicode character. - /// - Waze = 0xF83F, - - /// - /// The Font Awesome "weebly" icon unicode character. - /// - Weebly = 0xF5CC, - - /// - /// The Font Awesome "weibo" icon unicode character. - /// - Weibo = 0xF18A, - - /// - /// The Font Awesome "weight" icon unicode character. - /// - Weight = 0xF496, - - /// - /// The Font Awesome "weight-hanging" icon unicode character. - /// - WeightHanging = 0xF5CD, - - /// - /// The Font Awesome "weixin" icon unicode character. - /// - Weixin = 0xF1D7, - - /// - /// The Font Awesome "whatsapp" icon unicode character. - /// - Whatsapp = 0xF232, - - /// - /// The Font Awesome "whatsapp-square" icon unicode character. - /// - WhatsappSquare = 0xF40C, - - /// - /// The Font Awesome "wheelchair" icon unicode character. - /// - Wheelchair = 0xF193, - - /// - /// The Font Awesome "whmcs" icon unicode character. - /// - Whmcs = 0xF40D, - - /// - /// The Font Awesome "wifi" icon unicode character. - /// - Wifi = 0xF1EB, - - /// - /// The Font Awesome "wikipedia-w" icon unicode character. - /// - WikipediaW = 0xF266, - - /// - /// The Font Awesome "wind" icon unicode character. - /// - Wind = 0xF72E, - - /// - /// The Font Awesome "window-close" icon unicode character. - /// - WindowClose = 0xF410, - - /// - /// The Font Awesome "window-maximize" icon unicode character. - /// - WindowMaximize = 0xF2D0, - - /// - /// The Font Awesome "window-minimize" icon unicode character. - /// - WindowMinimize = 0xF2D1, - - /// - /// The Font Awesome "window-restore" icon unicode character. - /// - WindowRestore = 0xF2D2, - - /// - /// The Font Awesome "windows" icon unicode character. - /// - Windows = 0xF17A, - - /// - /// The Font Awesome "wine-bottle" icon unicode character. - /// - WineBottle = 0xF72F, - - /// - /// The Font Awesome "wine-glass" icon unicode character. - /// - WineGlass = 0xF4E3, - - /// - /// The Font Awesome "wine-glass-alt" icon unicode character. - /// - WineGlassAlt = 0xF5CE, - - /// - /// The Font Awesome "wix" icon unicode character. - /// - Wix = 0xF5CF, - - /// - /// The Font Awesome "wizards-of-the-coast" icon unicode character. - /// - WizardsOfTheCoast = 0xF730, - - /// - /// The Font Awesome "wolf-pack-battalion" icon unicode character. - /// - WolfPackBattalion = 0xF514, - - /// - /// The Font Awesome "won-sign" icon unicode character. - /// - WonSign = 0xF159, - - /// - /// The Font Awesome "wordpress" icon unicode character. - /// - Wordpress = 0xF19A, - - /// - /// The Font Awesome "wordpress-simple" icon unicode character. - /// - WordpressSimple = 0xF411, - - /// - /// The Font Awesome "wpbeginner" icon unicode character. - /// - Wpbeginner = 0xF297, - - /// - /// The Font Awesome "wpexplorer" icon unicode character. - /// - Wpexplorer = 0xF2DE, - - /// - /// The Font Awesome "wpforms" icon unicode character. - /// - Wpforms = 0xF298, - - /// - /// The Font Awesome "wpressr" icon unicode character. - /// - Wpressr = 0xF3E4, - - /// - /// The Font Awesome "wrench" icon unicode character. - /// - Wrench = 0xF0AD, - - /// - /// The Font Awesome "xbox" icon unicode character. - /// - Xbox = 0xF412, - - /// - /// The Font Awesome "xing" icon unicode character. - /// - Xing = 0xF168, - - /// - /// The Font Awesome "xing-square" icon unicode character. - /// - XingSquare = 0xF169, - - /// - /// The Font Awesome "x-ray" icon unicode character. - /// - XRay = 0xF497, - - /// - /// The Font Awesome "yahoo" icon unicode character. - /// - Yahoo = 0xF19E, - - /// - /// The Font Awesome "yammer" icon unicode character. - /// - Yammer = 0xF840, - - /// - /// The Font Awesome "yandex" icon unicode character. - /// - Yandex = 0xF413, - - /// - /// The Font Awesome "yandex-international" icon unicode character. - /// - YandexInternational = 0xF414, - - /// - /// The Font Awesome "yarn" icon unicode character. - /// - Yarn = 0xF7E3, - - /// - /// The Font Awesome "y-combinator" icon unicode character. - /// - YCombinator = 0xF23B, - - /// - /// The Font Awesome "yelp" icon unicode character. - /// - Yelp = 0xF1E9, - - /// - /// The Font Awesome "yen-sign" icon unicode character. - /// - YenSign = 0xF157, - - /// - /// The Font Awesome "yin-yang" icon unicode character. - /// - YinYang = 0xF6AD, - - /// - /// The Font Awesome "yoast" icon unicode character. - /// - Yoast = 0xF2B1, - - /// - /// The Font Awesome "youtube" icon unicode character. - /// - Youtube = 0xF167, - - /// - /// The Font Awesome "youtube-square" icon unicode character. - /// - YoutubeSquare = 0xF431, - - /// - /// The Font Awesome "zhihu" icon unicode character. - /// - Zhihu = 0xF63F, -} diff --git a/Dalamud/Interface/Internal/InterfaceManager.cs b/Dalamud/Interface/Internal/InterfaceManager.cs index 2d4b979dd..aa721ad39 100644 --- a/Dalamud/Interface/Internal/InterfaceManager.cs +++ b/Dalamud/Interface/Internal/InterfaceManager.cs @@ -733,7 +733,7 @@ internal class InterfaceManager : IDisposable, IServiceType // FontAwesome icon font Log.Verbose("[FONT] SetupFonts - FontAwesome icon font"); { - var fontPathIcon = Path.Combine(dalamud.AssetDirectory.FullName, "UIRes", "FontAwesome5FreeSolid.otf"); + var fontPathIcon = Path.Combine(dalamud.AssetDirectory.FullName, "UIRes", "FontAwesomeFreeSolid.otf"); if (!File.Exists(fontPathIcon)) ShowFontError(fontPathIcon); diff --git a/Dalamud/Interface/Internal/Windows/DataWindow.cs b/Dalamud/Interface/Internal/Windows/DataWindow.cs index 1b594e34d..0bd96ac19 100644 --- a/Dalamud/Interface/Internal/Windows/DataWindow.cs +++ b/Dalamud/Interface/Internal/Windows/DataWindow.cs @@ -80,6 +80,14 @@ internal class DataWindow : Window private Hook? messageBoxMinHook; private bool hookUseMinHook = false; + // FontAwesome + private List? icons; + private List iconNames; + private string[]? iconCategories; + private int selectedIconCategory; + private string iconSearchInput = string.Empty; + private bool iconSearchChanged = true; + // IPC private ICallGateProvider ipcPub; private ICallGateSubscriber ipcSub; @@ -149,7 +157,8 @@ internal class DataWindow : Window Address, Object_Table, Fate_Table, - Font_Test, + SE_Font_Test, + FontAwesome_Test, Party_List, Buddy_List, Plugin_IPC, @@ -270,8 +279,12 @@ internal class DataWindow : Window this.DrawFateTable(); break; - case DataKind.Font_Test: - this.DrawFontTest(); + case DataKind.SE_Font_Test: + this.DrawSEFontTest(); + break; + + case DataKind.FontAwesome_Test: + this.DrawFontAwesomeTest(); break; case DataKind.Party_List: @@ -573,7 +586,7 @@ internal class DataWindow : Window } } - private void DrawFontTest() + private void DrawSEFontTest() { var specialChars = string.Empty; @@ -581,15 +594,45 @@ internal class DataWindow : Window specialChars += $"0x{i:X} - {(SeIconChar)i} - {(char)i}\n"; ImGui.TextUnformatted(specialChars); + } - foreach (var fontAwesomeIcon in Enum.GetValues(typeof(FontAwesomeIcon)).Cast()) + private void DrawFontAwesomeTest() + { + this.iconCategories ??= FontAwesomeHelpers.GetCategories(); + + if (this.iconSearchChanged) { - ImGui.Text(((int)fontAwesomeIcon.ToIconChar()).ToString("X") + " - "); - ImGui.SameLine(); + this.icons = FontAwesomeHelpers.SearchIcons(this.iconSearchInput, this.iconCategories[this.selectedIconCategory]); + this.iconNames = this.icons.Select(icon => Enum.GetName(icon)!).ToList(); + this.iconSearchChanged = false; + } + ImGui.SetNextItemWidth(160f); + var categoryIndex = this.selectedIconCategory; + if (ImGui.Combo("####FontAwesomeCategorySearch", ref categoryIndex, this.iconCategories, this.iconCategories.Length)) + { + this.selectedIconCategory = categoryIndex; + this.iconSearchChanged = true; + } + + ImGui.SameLine(170f); + ImGui.SetNextItemWidth(180f); + if (ImGui.InputTextWithHint($"###FontAwesomeInputSearch", "search icons", ref this.iconSearchInput, 50)) + { + this.iconSearchChanged = true; + } + + ImGuiHelpers.ScaledDummy(10f); + for (var i = 0; i < this.icons?.Count; i++) + { + ImGui.Text($"0x{(int)this.icons[i].ToIconChar():X}"); + ImGuiHelpers.ScaledRelativeSameLine(50f); + ImGui.Text($"{this.iconNames[i]}"); + ImGuiHelpers.ScaledRelativeSameLine(280f); ImGui.PushFont(UiBuilder.IconFont); - ImGui.Text(fontAwesomeIcon.ToIconString()); + ImGui.Text(this.icons[i].ToIconString()); ImGui.PopFont(); + ImGuiHelpers.ScaledDummy(2f); } } diff --git a/Dalamud/Utility/EnumExtensions.cs b/Dalamud/Utility/EnumExtensions.cs index b4c58d95c..0bb60962e 100644 --- a/Dalamud/Utility/EnumExtensions.cs +++ b/Dalamud/Utility/EnumExtensions.cs @@ -27,4 +27,14 @@ public static class EnumExtensions .OfType() .SingleOrDefault(); } + + /// + /// Gets an indicator if enum has been flagged as obsolete (deprecated). + /// + /// The enum value that has an attached attribute. + /// Indicator if enum has been flagged as obsolete. + public static bool IsObsolete(this Enum value) + { + return GetAttribute(value) != null; + } }