urgent : french charater in pdf [message #33409] |
Mon, 11 October 2004 01:39 |
Satya
Messages: 36 Registered: January 2001
|
Member |
|
|
Hi All,
Can anyone help me to get the french character in my pdf output.
I have got a data field with french character.But when it is shown in the report out in PDF format, it gets replaced with some special character.
Regards
satya
|
|
|
Re: urgent : french charater in pdf [message #33419 is a reply to message #33409] |
Mon, 11 October 2004 14:51 |
andrew again
Messages: 2577 Registered: March 2000
|
Senior Member |
|
|
it's not an easy problem to answer, but probably has to do with your NLS settings. Is the PDF document created on a (unix?) server or on a PC?
There are many variables including the database characterset, that correct storage of the french character in the database. Use udump() to show you the actual bytes stored for that character. Below is a check to see how a Euro sign is stored in UTF8:
SQL> select dump(chr(14844588)) from dual;
DUMP(CHR(14844588))
------------------------
Typ=1 Len=3: 226,130,172
Open a TAR with Metalink if you have support.
|
|
|