I want to make an app that searches unicode characters by name. It looks like the UnicodeInfo class only lets me search by character. Ex: If I want to find a Unicode music note, I want to call something like:
// Returns 2669 - 266C, 1D13B - 1D164, 1F3B5, etc.
IEnumerable<int> matchingCharacters = UnicodeInfo.FindByName("note");
I want to make an app that searches unicode characters by name. It looks like the UnicodeInfo class only lets me search by character. Ex: If I want to find a Unicode music note, I want to call something like: