bool isFancyNamePart(int x) => x == char.ZWNJ || x == char.ZWJ || x == char.BOM || unicode.isNonspacingMark(x) || unicode.isSpacingMark(x);