You can do this using unicode properties, I suppose.
त(?!\p{M}+)
Corresponds to the code point, if it is not followed by any code points in category M, which are characters that must be combined with other characters. He uses a negative result to make this statement.
E: and if this does not work right away, try
\uxxxx(?!\p{M}+)
Where xxxx is the code point number of the character.
source share