Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Character probs w/ Web Server
Shannon,
The following code might help you to print special characters in html.
PROCEDURE GEN_FRENCH
IS
BEGIN
htp.htmlOpen; FOR i IN 192.. 255 LOOP htp.p(chr(i)||' '); END LOOP; htp.htmlClose;
Shannon Hickey wrote:
>
> Hello,
>
> I am wondering if someone might know the answer to my problem. I have been
> trying to include some accented French characters in my PL/SQL code to be
> displayed on an html page.
>
> Thanks!
> Shannon Hickey
Received on Thu May 20 1999 - 08:34:39 CDT
![]() |
![]() |