Char Functions Oracle PLSQL

SQL>
SQL> --UNISTR(x): Converts the characters in x to the national language character set (NCHAR).
SQL>
SQL> SELECT UNISTR('abc\00e5\00f1\00f6') FROM DUAL;
UNISTR
------
abcåñ
SQL>
SQL>