MaterialDesignIcons seems to have moved their icons from the Private Use Area (U+E000..U+F8FF) to the Supplementary Private Use Area-A (U+F0000..U+FFFFD).
Iconize internally uses a lookup table where type "char" is used to store the unicode character. This unfortunately doesn't work for "Supplementary Private Use Area-A" as it requires either UTF-16 surrogate pairs or UTF-32.
Easiest fix is likely to simply use "string" instead of "char" for storing the unicode character of the icon.
MaterialDesignIcons seems to have moved their icons from the Private Use Area (U+E000..U+F8FF) to the Supplementary Private Use Area-A (U+F0000..U+FFFFD).
Iconize internally uses a lookup table where type "char" is used to store the unicode character. This unfortunately doesn't work for "Supplementary Private Use Area-A" as it requires either UTF-16 surrogate pairs or UTF-32.
Easiest fix is likely to simply use "string" instead of "char" for storing the unicode character of the icon.