Char Functions Oracle PLSQL

SQL> --ASCIISTR(x): Converts x to an ASCII string, where x may be a string in any character set.
SQL>
SQL> select asciistr(1234) from dual;
ASCI
----
1234
SQL>