Something like this should work, assuming your encoding is Unicode (normally UTF-8), which grep would interpret:
grep -P '[\x{200B}\x{200C}\x{200D}\x{FEFF}]' code.ts
See https://stackoverflow.com/q/78129129/223424