Special character display issue

Hi,
I've been struggling with this issue for some time now and
have not yet found a solution. Basically I am trying to display the
letter 'á' in bold within a dynamic text field, where the text
is parsed from some internal script.
There is nothing wrong with the script as it works for other
special characters. I have embedded the correct glyphs, and even
tried all glyphs.
I have tried several methods of encoding the character in the
scipt such as Unicode Escape, Numeric Entity and URL encoding; no
luck with either. For other special characters I have simply
embedded the glyph and typed the special character into my script
using the charmap instructions and they have worked fine but for
some reason when I want to make it bold it just wont display. The
method I've used to embolden the text is show below, please note
this has worked fine for other characters and the bold version of
the font contains the glyph in the charmap.
"<font face=\"AvantGarde LT
Bold\">Lávese</font>"
This results in: Lvese (in bold) skipping the á
I'm starting to wonder if this is a problem with the software
itself. If anyone has any suggestions, I'd love to give them a go.
Thanks in advance for any assistance
P.S. my e-mail is [email protected]

Pl identify which exact version of 10g, along with the database characterset.
Going by what you have stated, your database characterset is most likely WE8ISO8859P1, which does not recognize the single quote (or apostrophe) or the bullet point.
You will need to use a characterset that supports these characters - Oracle recommends AL32UTF8
http://download.oracle.com/docs/cd/B19306_01/server.102/b14225/ch6unicode.htm
If you can recreate this database, use AL32UTF8 then perform your conversion.
HTH
Srini

Similar Messages

  • Character display issue in French Web index tab

    First of all, I'm working with RoboHelp 8.
    There is a character display issue in the index tab of the web help. (See screenshot below)
    The apostrophe, instead of displaying by itself, it has a backslash just before it: \'
    In the hhk file, I started using the actual apostrophe ('), then replaced it with &#39; and finally tried &apos;
    (The htm files use utf-8 encoding). None of those options seemed to solve the issue.
    Any help will be appreciated.

    Hi Steve,
    Thanks for a very quick response. The problem is that the Title (name of the image filename is also the item number in Quote) and this is always not null. I am not sure how do I test whether the image is present in $OA_MEDIA directory or not. Does BI Publisher provide a way to find out whether an image filename exists in $OA_MEDIA or not.
    If there is no such standard way provided by BI Publsher, then I guess I will have to write Java function that executes in the middle tier and returns whether file exists with that name in $OA_MEDIA.
    Please let me know your view.
    Thanks

  • Chinese Character display issue on Coldfusion 10

    My Company using Coldfusion to built an report platform and recently I upgrade our Coldfusion 7MX with Windows Server 2003 to Coldfusion 10 Enterprise with Windosw Server 2008 R2.
    I copy the Code from the Old server to the new one, but I met the problem I couldn’t solve.
    We have a repost that can enter, modify and view our SRM that has Chinese Character display request. Chinese character was display without problem when the system in the old server. which look like following.
    once I move the code into the new server, I got the problem with Chinese Character as following.
    This report pulling the data from SQL2005 with Windows Server 2003 R2.
    Coldfusion code code was same and both version is access to the same database.
    I ran all of the update included to install the windows MUI for Chinese character into the new server,  but I still can't get the character display correctly.
    I can view the chinese character website without issue but only to display in the report.
    I contact with Microsoft tech support but they don't have an solution for me. please help.

    Install windows server language pack:  http://www.microsoft.com/en-us/download/details.aspx?id=12250
    Are you sure the Chinese is encoded in UTF-8?  (It should be, but you should check the database field type encoding.)  If it's simplified chinese it could be set to GB18030 and if it's traditional chinese it could be Big5.
    You might want to leave off the encoding directive in CF and load the page in a browser then change encodings using tools > encodings  to see what works.
    祝你好运!

  • SM Special Character Displays as Bullet

    Hello,
    I'm using a form in Acrobat Standard 7.0 - OSX.
    When using the special character SM (Service Mark in superscript) it displays as a bullet. The TM which is also a superscript works fine.
    Can you think of any reason why?
    Thanks

    For the record there was a Acrobat Standard for Mac.
    When acrobat 6 came out, there was a standard and pro. But the standard version did nothing more than Mac's own PDF creation capability. Ther were such howls of Protest that when Acrobat 7 came out, there was no longer a  standard version. Please check you acrobat history. Standard for Mac could even create forms. then only thing it could do was create pdf's
    and also the was a standard and pro version of 5 also. The proversion had the print press capabilities built in. the standard version had the ability to create forms.  And I think 5.05a was the best version ever put out. You could even create PDF E-Books.

  • Special Character Encoding issue

    Hi all
    Am using OAS9i. i ve deployed a webservice. i submit a payload request data that has some unicode characters like "§". The data is base64binary encoded. The type of the element mentioned in the schema is base64binary. When i retrieve the payload in java implementation code the character is displayed as � in the console. Please advice how to fix this issue. I tried setting JVM option file.encoding=utf-8 it didnt work out.
    Thanks
    Shiny

    When you use an UDF and you have programmed a Sax parser, then make sure, that the parser works with the correct encoding. So when the result of the webservice is  ISO-8859-1, then assign this to the parser.
    In principle the encoding should be part of XML header. Make sure that the encoding of the response is the same as declared in XML header.

  • Special character deletion issue

    Hi all,
    I have a text field which contains special characters  which are not being entered by key board. I would like to repalce those chars. system is displaying these spl chars as '#'. I have used function module 'SCP_REPLACE_STRANGE_CHARS' , but it is replacing all the specail chars to dots(.), due to this if I have any valid chinese or japanese chars those are also getting replaced.
    pls any can help me out to resolve this issue.
    Thanks in advance
    reddi

    hi,
    if you want use this fm
    code as like below
    check this program
    RFFORI99
    or
    use like below
    form special_character  changing p_text_in p_text_out.
      call function 'SCP_REPLACE_STRANGE_CHARS'
        exporting
          intext                  = p_text_in
        INTEXT_LG               = 0
        INTER_CP                = '0000'
        INTER_BASE_CP           = '0000'
        IN_CP                   = '0000'
        REPLACEMENT             = 46
        importing
          outtext                 = p_text_out
        OUTUSED                 =
        OUTOVERFLOW             =
       exceptions
         invalid_codepage        = 1
         codepage_mismatch       = 2
         internal_error          = 3
         cannot_convert          = 4
         fields_not_type_c       = 5
         others                  = 6.
      if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.                                        " special_character
    Thanks and regards
    durga.K

  • Special character displaying as ? in PDF output

    Hi,
    I am generating BI publisher report through Oracle application.
    My Pdf output is ok for Finnish and German language. But for polish font I am getting ? in PDF output. When I open XML file it says
    " The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    An invalid character was found in text content. Error processing resource"
    In database Polish font is stored perfectly.
    I tried this <?xml version="1.0" encoding="UTF-8" ?> for generating XML. But I did not work.
    I do not know what is the problem. Please help me.
    Regards,
    Faiyaz

    create or edit xdo.cfg file.
    For XML Publisher Desktop it is ( in my case) c:\Program Files\Oracle\XML Publisher Desktop\Template Builder for Word\config\.
    Find section fonts, add your font, that support polish. like that
    <font family="Times New Roman" style="normal" weight="normal">
    <truetype path="C:\WINDOWS\Fonts\times.ttf" />
    </font>
    For XML publisher is Note:399518.1. I think it can help you.

  • Special character display

    Post Author: Eany
    CA Forum: General
    Depending on a @parameter, in my detail,
    I need to display either spaces if "N", or a right pointing white arrow, within a blue circle background, if "Y".
    How do I contrust such a display ?
    I can draw a box, and use roundings to get a circle, but how to get the arrow on top of it, and how to suppress te whole lot if @parameter is "N" ?
    Thanks in anticipation.

    Post Author: SKodidine
    CA Forum: General
    The easiest way would be to create an image (jpg or bmp) of a right pointing arrow with blue circular background and then insert it into the report.  Then, right click on the image then 'Format Graphic' and the under the Common tab, click on x-2 next to suppress and in the formula workshop window type
    @parameter = 'N';
    This should suppress if the value is N which will result in a blank and display the image if the value is Y.

  • Special character loading issue with SQL Loader

    Hi,
    I am getting the special characters as part of my input file to SQL loader. The problem is that because the length of the input string (having special characters) is more than 1000 in input data, the converted bytes length is becoming more than 4000 and the defined substrb() function in control file is not working for it and the target 'ADDR_LINE' column in table 'TEST_TAB' is defined Varchar2(1024 char).
    Following is a sample ctl file and data i am using for it.
    LOAD DATA
    CHARACTERSET UTF8
    INFILE 'updated.txt'
    APPEND INTO TABLE TEST_TAB
    FIELDS TERMINATED BY "|~"
    TRAILING NULLCOLS
    INDX_WORD ,
    ADDR_LINE "SUBSTRB(:ADDR_LINE , 1, 1000)",
    CITY
    following is the actual data which i am receiving as part of input file to sql loader for the ADDR_LINE column:
    'RUA PEDROSO ALVARENGA, 1284 AƒAƒA‚AƒAƒA‚A‚AƒAƒAƒA‚A‚AƒA‚A‚AƒAƒAƒA‚AƒAƒA‚A‚A‚AƒAƒA‚A‚AƒA‚A‚AƒAƒAƒA‚AƒAƒA‚A‚AƒAƒAƒA‚A‚AƒA‚A‚A‚AƒAƒA‚AƒAƒA‚A‚A‚AƒAƒA‚A‚AƒA‚A‚A‚AƒAƒA‚AƒAƒA‚A‚AƒAƒAƒA‚A‚AƒA‚A‚AƒAƒAƒA‚AƒAƒA‚A‚A‚AƒAƒA‚A‚AƒA‚A‚A‚AƒAƒA‚AƒAƒA‚A‚AƒAƒAƒA‚A‚AƒA‚A‚A‚AƒAƒA‚AƒAƒA‚A‚A‚AƒAƒA‚A‚AƒA‚A‚A– 10 ANDAR'
    My database is having following settings.
    NLS_CALENDAR     GREGORIAN
    NLS_CHARACTERSET     AL32UTF8
    NLS_COMP     BINARY
    NLS_CURRENCY     $
    NLS_DATE_FORMAT     DD-MON-RR
    NLS_DATE_LANGUAGE     AMERICAN
    NLS_DUAL_CURRENCY     $
    NLS_ISO_CURRENCY     AMERICA
    NLS_LANGUAGE     AMERICAN
    NLS_LENGTH_SEMANTICS     BYTE
    NLS_NCHAR_CHARACTERSET     AL16UTF16
    NLS_NCHAR_CONV_EXCP     FALSE
    NLS_NUMERIC_CHARACTERS     .,
    NLS_SORT     BINARY
    NLS_TERRITORY     AMERICA
    NLS_TIMESTAMP_FORMAT     DD-MON-RR HH.MI.SSXFF AM
    NLS_TIMESTAMP_TZ_FORMAT     DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_TIME_FORMAT     HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT     HH.MI.SSXFF AM TZR
    Any help in this regard will be much appreciated.
    Thanks in advance.

    Is the data file created directly on the Unix server ? If not, how does it get to the Unix server ? And where does the file come from ? Is the UTF8 locale installed on the Unix server (check with the Unix sysadmin) ?
    HTH
    Srini

  • Non-Latin Character Display On Web Page

    In a Java web application, only one non-Latin character display issue is that when they are typied into a JSP file. Otherwise, non-Latin characters display correctly from the message property file or from database.
    Anyone know how to solve it?
    Thanks.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Solved!
    Just need to have the JSP page tag on the related JSP file.
    null

    Welcome to our community, Denise
    Perhaps check the names of all the files involved? What type
    of web server are you using?
    You say that your co-worker said she is linking to the skin
    file from a .htm page, but what is missing here is whether she is
    using the .HTM page you provided in the mix or if it's one she
    created herself. If it's one she created herself, that may be the
    issue.
    Cheers... Rick

  • XML Data from PL/SQL procedure -- special character issue (eBS)

    Hi All,
    I am developing a report, where the XML data is created by a PL/SQL procedure. I chose this approach over a data template, since there is a lot of processing involved in producing the actual data, and it cannot be done by select-statements alone. The report is run as a regular concurrent request.
    So far so good. There is a problem though. Every time the data contains special characters (ä, ö, umlauts), the concurrent request is completed with a warning, the log confirms that "One or more post-processing actions failed.", also there is no output file. The XML structure is valid as such. The report runs smoothly and produces the output when the XML data does not contain special characters.
    I am producing the XML lines by using the standard FND_FILE.PUT_LINE procedure: Fnd_File.put_line(Fnd_File.output, '<?xml version="1.0" encoding="UTF-8"?>'); This seems like a character encoding issue, but declaring the UTF-8 encoding in this way does not solve the problem.
    Any ideas what can be done to fix this? I have been searching Metalink but cannot find an answer. Many thanks for your kind help.
    Best Regards, Matilda

    Hi Rajesh,
    One idea I have, is that it might be possible to modify the PL/SQL code into a "before report" type trigger, attached to a data template. The code would process the data and write the lines into a temporary table, from which the data template could retrieve them in a simple select-query. However, it would be neat to be able to solve this without adding an extra layer of processing, since BI Publisher supposedly supports PL/SQL procedures as the data source.
    The data in this case is all correct, special characters are an intrinsic feature of the Finnish language. :)
    Best Regards, Matilda

  • How do I get Special character Euro symbol € to display ?

    Hi,
    How do I get the euro symbol € to display in Flash from
    PHP file created in DW ?. It does not display it properly. I have
    simplified the PHP code I have is:
    <?php
    $msgtoflash = "This is the Euro Symbol &#8364";
    print ("&Databaseinfo=$msgtoflash");
    ?>
    The &#8364 is a special character code for HTML.
    If I use the $ or £ symbols it works perfectly but not
    € ?
    Thanks,
    Paul

    maith wrote:
    > Im using Actionscript2. I had placed a query in Flash in
    "General
    > Discussions", before I came on the Dreamweaver Forum,
    but got no reply.
    The way to get the euro symbol to display in Flash is to use
    XML. I have
    tested this, and it works:
    euro.php
    <?php
    header('Content-type: text/xml');
    echo '<root>
    <elem>This is the euro symbol:
    &#8364;</elem>
    </root>';
    ?>
    ActionScript 2.0 to display the value of <elem> in a
    dynamic text field
    called myText:
    var myXML:XML = new XML();
    myXML.ignoreWhite = true;
    myXML.onLoad = handleLoad;
    myXML.load('
    http://localhost/test/euro.php');
    function handleLoad(success) {
    if (success) {
    var theRoot:XMLNode = this.firstChild;
    myText.text = theRoot.firstChild.firstChild.nodeValue;
    } else {
    myText.text = 'Not working :(';
    Handling XML in ActionScript 2.0 is like poking needles in
    your eyes,
    but it's the only way I have been able to get the euro symbol
    from an
    external source into a Flash movie.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Special Character Issue in Country Name Côte d'Ivoire encoding ISO-88509-1

    soa suite 10.1.3.4
    I am reading an xml file using file adapter. The file has encoding type ISO-88509-1 and the country name is coming as <country_name>Côte d'Ivoire</country_name>.
    When I see the BPEL instance, this character is converted to "C\234te d'Ivoire" jumbled character. The target endpoints receives the country name in jumbled format only. I can't change the incoming file format. Is there a way I can read it properly and keep the special character as it is during SOA process.
    Any idea how can I progress in this issue?

    Any idea on this ? My soa suite server is on Solaris and the folder where I am reading the file from is on Windows.

  • External Table - Issues With Special Character.

    I have an external table that reads from a fixed length file. The file is expected to contain special characters. In my case the word containing special character is "Göteborg". Because "ö" is a special character, looks like Oracle is considering it as 2 bytes. That causes the trouble. The subsequent fields in the files get shifted by 1 byte thereby messing up the data. Has anyone faced the issue before. So far we have tried the following solution:
    Changed the value of NLS_LANG to AMERICAN_AMERICA.WE8ISO8859P1
    Tried Setting the Database Character set to UTF-8
    Tried changing the NLS_LENGTH_SYMMANTIC to CHAR instead of BYTE using ALTER SYSTEM
    Tried changing the External table characterset to: AL32UTF8
    Tried changing the External table characterset to: UTF-8
    Nothing works. Other details include:
    • File is UTF-8 encoded
    • Operating System : RHEL
    • Database: Oracle 11gR2
    Any thing else that I might be missing? Any help will be appreciated. Thanks in advance!
    Ganesh

    CREATE TABLE "APP_XXX_XX_XXXX"(
    "KEY_NO" NUMBER,
    "XXX_XXX_XXXXX" VARCHAR2(1 CHAR),
    "XXX_XXX_XXXXX" NUMBER(9,0),
    "XXX_XXX_XXXXX" NUMBER(4,0),
    "XXX_XXX_XXXXX" NUMBER(2,0),
    "XXX_XXX_XXXXX" NUMBER(3,0))
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY "DIR"
    ACCESS PARAMETERS
    ( RECORDS DELIMITED BY NEWLINE
    CHARACTERSET 'UTF8'
    LOGFILE APP_XXX_XX_XXXX_%A_%P.LOG'
    BADFILE 'APP_XXX_XX_XXXX_%A_%P.BAD'
    DISCARDFILE 'APP_XXX_XX_XXXX_%A_%P.DSC'
    FIELDS(
    KEY_NO POSITION(1:9) INTEGER EXTERNAL,
    XXX_XXX_XXXXX POSITION(10:10) CHAR,
    XXX_XXX_XXXXX POSITION(11:19) INTEGER EXTERNAL,
    XXX_XXX_XXXXX POSITION(11:14) INTEGER EXTERNAL,
    XXX_XXX_XXXXX POSITION(15:16) INTEGER EXTERNAL,
    XXX_XXX_XXXXX POSITION(17:19) INTEGER EXTERNAL)
    LOCATION
    ( 'FILE1.TXT')
    REJECT LIMIT UNLIMITED
    PARALLEL 4;
    The data forms part of a major driver table, which I may not be able to provide as per the NDA with my company.
    The Script I have shared is standard template for creating external table as part of our applications.
    We majorly cater for EU regions with this project.(European Characterset needed to be supported)
    Thanks
    Ganesh
    Edited by: RGRAM on Feb 11, 2011 12:44 PM

  • Special Character not displayed correctly on Japanese OS

    Hi,
    I have an application build in LabVIEW that I want to install on a Japanese OS but some of the special character are not displayed correctly like °.
    Is it possible to tell my application to use the US ASCII table to display character? Or I need to code special case for Japanese OS?
    Thank you 
    Dany
    Dany Allard

    Hi Dany,
    It sound like tyou are trying to localize your application to Japanese. You might want to take a loot at this link here 
    Joe Daily
    National Instruments
    Applications Engineer
    may the G be with you ....

Maybe you are looking for

  • How to free up iCloud space from pictures

    iCloud tells me Ive run out of space for backups. I am backing up my iPad which has very few photos and my iPhone which has a lot. Storage & Backup reads: iPhone 3.7GB iPad 364MB Docs&Data 8.6MB Mail 312.2MB Available 643MB Drilling down into my iPho

  • Oracle HTTP Server and Node Manager

    Hi, I installed Oracle HTTP Server with Node Manager. I set "CrashRecoveryEnabled=true" in the nodemanager.properties. It works fine when I reboot the machine, but when I kill the root process (kill -9), the new process can not be started as the prev

  • Date Field - custom entry

    Hello, I'm trying to create a date field in LC which can only be selected from the drop down calendar.  I would like to disable keyboard entries both before and after the date selection.  Is anyone able to assist? Thanks.

  • Will shuffle for windows work on mac?

    cant get to work

  • Dreamweaver CS5 won't open after installing OS X Mavericks

    I've followed the instructions in previous posts, but still Dreamweaver won't open.  In a terminal window, this error message shows.... -bash: syntax error near unexpected token `;' Any help please? Many thanks!!!!!!!