The name in a `\N{...}` block should use fuzzy matching instead of exact equality. ```swift "π©βπ©βπ§βπ¦".contains(/(?u).\N{ZERO WIDTH JOINER}/) // true "π©βπ©βπ§βπ¦".contains(/(?u).\N{ZeroWidthJoiner}/) // false, should be true ```