You can also use the \Z escape sequence with a regular LIKE statement:
\Z
LIKE
SELECT * FROM Customer WHERE Name LIKE '%\Z%'
Interestingly, this returns different results than using RLIKE '[[:cntrl:]]+'. I'm not sure why.
RLIKE '[[:cntrl:]]+'
See here for more details.