Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Ascii value of small leter “e” with grave character (Rivière)

960008Jan 21 2013 — edited Jan 22 2013
Hi all,
I want to get ASCII Value of the character for a small leter “e” with grave character (Rivière):

I ran following:

SQL> select ascii(è) from dual;
select ascii(è) from dual
*
ERROR at line 1:
ORA-00911: invalid character


SQL> select ascii('è') from dual;
ERROR:
ORA-01756: quoted string not properly terminated


SQL> select ascii("è") from dual;
ERROR:
ORA-01740: missing double quote in identifier

Some how I'm not getting it.
Any idea, what wrong I'm doing.

Amit
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 19 2013
Added on Jan 21 2013
11 comments
648 views