If needing to find out what views contain emojis, what query can be ran.
For Oracle, the following example query (on the table of Clarity views) can be used:
SELECT * FROM odf_ui_views
WHERE REGEXP_LIKE(name, UNISTR('[\FFFF-\DBFF\DFFF]'))
ORDER BY created_date DESC;