Problems displaying some special characters on gray 80gb classic

Hello,
I recently got a new gray 80gb iPod classic and I have noticed that certain characters cannot be displayed on it. This occurs with characters such as 'ø' (which is actually the full name of an obscure minimal techno act from the early 1990s) and 'ÿ' (which would occur in the name of the metal band Queensrÿche in the case of my iPod). What is unusual is that these characters DO show up fine when I'm browsing through artists/albums, etc However when I actually play a song whose title or artist names contains such characters, they do not show up on the screen (next to the album art, title/artist/album interface).
Has anybody else noticed this and, if so, found any way to rememdy it?
Thanks in advance,
J

If your xml is utf-8 then I don't think you need the html
encoding with the ampersand.
The following works fine for me in windows:
var cdata="<b>Main Title Copy Goes Here
™</b>"
var tf:TextField=
this.createTextField("myTF",1,100,100,300,200);
tf.html=true;
tf.htmlText=cdata;
That was with the default settings and no embedded fonts etc.

Similar Messages

  • Problems displaying french special characters

    Hello,
    we are developing a multi-lingual WebDynpro application. The languages are set correct and the translation for all parts (portal, xls-files) works fine. Except the correct displaying of WebDynproResourceBundle-files.
    Example:
    We use the french property file with the content:
    Enl\u00c3\u00a8vement
    When calling this value, it displays:
    Enlèvement
    instead of
    Enlèvement
    I already tried to set the jvm system parameter for encoding to latin1 and latin2. But this didn't help.
    Does anybody know, what parameter I have to set to have this french special signs displayed the right way?
    Thank you in advance.
    Matthias

    Yes, I use UTF-8. I think this is the default-value, isn't it?
    They are displayed wrongly, when executing the WebDynpro application. Inside the NWDS editor the display is like that:
    example:
    editor:               language:  browser:     correct
    gel\u00f6
    scht de gelö
    scht ok
    Enl\u00c3\u00a8
    vement fr Enlè
    vement no!
    As you can see, it works fine for german special characters, but not for french, czech and some other languages.
    Thank you

  • Some special characters getting replaced by ? in TOAD

    Hi,
    I am using TOAD for updating a few records in the DB. Some special characters (non-english) like Staříč get replaced by Sta?í? in TOAD. I tried to set the characer set to default and East Europe under Editor Options, but it still doesn't work.
    Any suggestions?

    i) Verify your DB characterset can handle these characters
    ii) Verify that the correct values are being stored (use dump function)
    iii) Verify that NLS_CLient settings match NLS_Server settings
    iii) Verify that this is not a windows display issue. ie Windows has been set up to display these characters.
    One suggestion is to use OracleSQLDeveloper. You won't have any display issues then. :)
    I use it to display arabic charcters and I don't need any registry changes etc
    Edited by: Keith Jamieson on Dec 8, 2008 10:47 AM

  • Problem with Icelandic special characters on Mac

    Hello
    I am working on a Flash publication for students, and I want it to run on Mac as well as PC. Everything goes fine, except a problem with three special characters in my language, Icelandic. I am working on a registration and login page where I am using text boxes and text input boxes. Everything looks correct on PC, but on Mac the characters Þ Ð Ý are lost.
    I have tried different fonts etc.
    Any idea what is wrong?
    Jónas Helgason

    Hello Jónas,
    Did you ever figure this out ?
    I have a similar problem except only with two letters (both upper and lower case).  These two Icelandic letters can't be entered into a Flex TextInput box in the Flex apps I am creating when they are loaded on a Mac.  The letters are known as &Eth, &eth, &Thorn and &thorn in HTML terminology.  Typing these characters on the keyboard results in the following:  { [ ? /
    However I can copy the characters in question from some other app like TextEdit and paste them into a TextInput box in my Flex app and all is well, they show up correctly.
    This happens regardless of the Mac browser used and the Flash plugin version used (have tried both 9 and 10) and also happens in the standalone Flash Player application.
    Does anyone have any idea how to fix this or is this a bug in Flash Player ?  This is really annoying as it makes text input into Flex apps on Icelandic Macs very difficult.
    There must be something wrong with the mapping of keyboard key codes into character codes on the Mac that is causing this.
    Btw, I just heard from a friend that this problem does not exist in MacOS 10.6.  I am running 10.4 and have tested this on 10.5 and it exists on both of those OS versions.
    Rgds,
    Hordur Thordarson
    Lausn hugbunadur
    http://lausn.is

  • Unable to insert some special characters.

    Hi,
    I am not able to insert some czech characters into the database. The problem is mainly seems to be due to the characterset. When I query the record, it displays some garbage characters or ? instead of (ž, š). Can anyone please suggest me a solution for this problem?
    The DB characterset is :-
    SQL> select * from NLS_DATABASE_PARAMETERS where parameter like '%CHARACTERSET';
    PARAMETER VALUE
    NLS_CHARACTERSET WE8MSWIN1252
    NLS_NCHAR_CHARACTERSET AL16UTF16
    Many Thanks in Adbance.
    Sam:-)

    All characters are stored as a hexadecimal value either in one-byte (usually ASCII) or two-byte (Unicode). The mappings of which characters (or glyphs) go with which hexadecimal values constitutes a character set. Character sets are NOT equivalent to fonts. I used to build them.
    It sounds like the character set you are using on the server doesn't match with the character set on the client. This is not an uncommon problem. There are plenty of resources on the web for determining which characters map to which hex values. I recommend that you find the character set being used by the client and compare it to the one on the server. It is usually not a good idea to change the character set on the server after install, but Oracle may be able to help you through that. On the client end, you can look at the application and see if there is a way to change the character set to have it match what is on the server. For the Czech characters, I think that they are present in most ASCII symbolsets, but are not consistently mapped to the same hex values. Thus the problem you are seeing.
    Good Luck.

  • ### Problem in retrieving special characters with Oracle 9i JDBC drivers

    hi,
    We are having some problem with retrieving special characters like '�' from the database.
    Our application is using JDK1.3.1 with Oracle 9i at the back end(Version: 9.0.1.0.0). We are using oracle 9i thin drivers (classes12.zip) for database interaction.
    To relieve the data from database we are using PreparedStatement in two ways
    1. Creating a preparedstatement from connection object without any parameters and then retrieve the
    data using it. This gives the results in correct format i.e. special characters like '�'
    2. Create the preparedstatement by passing the following parameters.
    i) ResultSet.TYPE_SCROLL_INSENSITIVE
    ii) ResultSet.CONCUR_READ_ONLY
    In this case we are not able to retrieve the special character like '�' correctly. Instead the ResultSet
    returns 'h'
    I think this is the problem with Oracle drivers. Does anyone have any information about the mentioned problem.
    rgds

    I don't know exactly (because I am using JDK 1.4 with ojdbc14.jar where these problems seem to be rare...) but you may consider this:
    1. Add nls_charset12.zip to your classpath to ensure that the encoders are present (may or may not help)
    2. Swith to JDK 1.4, and do this:
    Instead of String s = getString(column)
    use
    byte[] bytes = getBytes(column);
    ByteBuffer bb = ByteBuffer.wrap(bytes); // in package java.nio
    CharBuffer cb = Charset.forname("ISO-8859-x").decode(bb);
    String s = cb.toString();
    The latter method allows you to perform the encoding/decoding manually.
    3. Change the character encoding in the database to unicode upon database setup.
    4. Try playing with NLS parameters (alter session ...)

  • What's wrong with the built-in keyboard on my macbook? The caps button does not work rite, no matter what letter button i push they all come out capitals and the number keys when pushed display the special characters instead of the numbers!

    the built-in keyboard on my macbook is not functioning right, the number keys when pushed display the special characters instead of the numbers,
    the caps button doesn't work at all, the letter buttons display capitals when pushed whether the caps button is on or off, the shift keys are also out of whack!!
    It seems it somehow got relocated to the "0" button because if you push and hold the zero button down the keyboard seems to operate normally, the number keys display numbers when pushed the letter keys display lower case when pushed but release the zero button and your back in the twilight zone!! Can anybody help me resolve this issue? one more thing im using an external usb keyboard right now and it seems to function properly if that helps any.

    You would do better in the actual macbook pro forums (this is not).

  • Language problem: ODBC changes special characters

    We are running Oracle 10g and have some clients that need access to some views using an ODBC-connection.
    Installation of the Instant Client and ODBC package went without trouble. We established a system DSN and the client has a successful connection to the database.
    Some special characters (for example german "&auml;","&ouml;","&uuml;" and the symbol "&Oslash;" for diameter) are howewer changed when viewed in Access or other 3rd party programms that use that system DSN ("&auml;" becomes "a", "&ouml;" becomes "o", "&Oslash;" becomes "?", etc.).
    I guess there may be just a single setting we missed to configure. Can anybody help?
    TNSNAMES.ORA (hostname changed):
    ORACLE_DEVELOP =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = TCP)(HOST = &lt;hostname&gt;)(PORT = 1521))
      (CONNECT_DATA =
        (SERVER = DEDICATED)
        (SERVICE_NAME = xyz)
    Edited by: user10620045 on 16.12.2008 02:12

    Hi,
    What character set is your database? SELECT * FROM NLS_DATABASE_PARAMETERS WHERE PARAMETER LIKE '%ERSET';
    Usually we see the behavior you're reporting when folks try to store data that the database characterset doesnt support. Disregard any sort of "when i select it from ____ it comes back different" results as that will only distract you.
    What is the data stored as exactly? Insert just a character or two in a one column table and then use the dump command.. SELECT DUMP(COLNAME,1016) FROM TABLENAME WHERE ...
    then match the code points with that character set and see if theyre valid.
    Hope it helps,
    Greg

  • [SOLVED] urxvt doesn't display correctly some special characters

    Hello everyone,
    I have a weird issue with urxvt. For some reason it doesn't display correctly some special character.
    Here is a comparison between xfce4-terminal and rxvt-unicode  (I used theses characters as exemple):
    xfce4-terminal :
    urxvt :
    And here is my .XDefaults file (without the color and the plugin part, since it's unrelevant):
    !Font
    URxvt.font: xft:PragmataPro:pixelsize=11:antialias=false
    !General
    URxvt.scrollBar: false
    URxvt*imLocale: fr_CH.UTF-8
    URxvt.saveLines: 5000
    URxvt.geometry: 95x26+50+50
    Has someone an idea what the problem could be?
    Thank's in advance.
    Last edited by mwm (2013-11-13 13:15:48)

    This is what I think is happpening.
    PragmataPro may not contain those glyphs.  It appears to have a wide array of glyphs but it is not unicode complete.
    Xfce-terminal is a vte terminal.  When a glyph cannot be found in the desired font, it will find the glyph in the 'closest' font.  Urxvt will only use the glyphs in the font or fonts specified.  If PragmataPro does not contain the glyphs, urxvt will display boxes.
    You can give urxvt a series of fonts to search. It will search for a glyph through the listed fonts in the order you specify.  Here's an example from my urxvt configs:
    urxvt*font: xft:DejaVu Sans Mono:style=Book:antialias=false:size=8, \
    xft:WenQuanYi Bitmap Song:size=8, \
    xft:FreeSerif:style=Regular, \
    xft:unifont:style=Medium:antialias=false
    I couldn't use FreeSerif or unifont as a main font, but for an occasional glyph, it works for me.  This file, http://www.cl.cam.ac.uk/~mgk25/ucs/exam … 8-demo.txt, can be displayed in urxvt correctly, with only a few unknow glyphs showing as boxes in the Amharic section.

  • Firefox for ICS (Ice Scream Sandwitch) has some issue when trying to display some french characters like é, ç, û

    Hello,
    Some french special characters are not correctly displayed (not aligned with the rest of the text, some space before or after) or not displayed at all :-(
    I think the issue is maybe due to ICS but I want to know: could you confirm ?
    Best Regards.

    Hello,
    On my ASUS TF101G i solve this issue with this topic ([http://www.geckozone.org/forum/viewtopic.php?f=32&t=101961#p675950 Geckozone] )
    # goto about:config
    # search for: font.default
    # change font.default.x-unicode and x-western to SERIF
    But for me there is another problem with special characters like "@" or "\" because use AltGr key in combination with "à" or "'-" have no effect.

  • Problems with Turkish special characters

    Hello!
    We are producing Oracle Help with WebWorks Publisher 2003 Professional for FrameMaker. There are some problems with the Turkish version of our online help: The Turkish special characters (for example the dotless i) aren´t displayed correctly in the navigation panes TOC and index. They are replaced by other characters (for example by a "y")
    Has anyone an idea how to solve this problem?
    Thank you very much.
    Kind regards,
    Miriam Rassenhofer

    Miriam,
    What encoding are the TOC and index XML files being generated in? You should use UTF-8 for the minimum of problems. I presume WebWorks has an option for this. Other than that, make sure the top of those XML files has the proper XML declaration with the encoding:
    <?xml version="1.0" encoding="UTF-8"?>You may want to try opening the XML files in an XML-aware text editor to ensure they look right there (JDeveloper is one such editor).
    If all of that is working, post back and we can talk offline about getting a snippet of one of those XML files for us to look at.
    -brian

  • Problem in reading special characters � Microsoft symbols.

    Hi All,
    I have a text field where user can enter some string and search. Unusually/unfortunately users can copy/paste text from ms-word file and search for that entry in the database. Here they can even copy ms-word special symbols such as ellipsis (�), em dash(�), en dash(�). Since database has such (special character) entries we cannot restrict them from doing this (after all that is the requirement).
    Now the problem is when I read the text value in servlet/jsp I find that those special characters are replaced by question marks(?). Because of this database return �no rows found� though there are entries.
    What I have observed is when I read the ASCII value � (int)char I am able to get proper value. Using that I am having if else block to replace the question marks with proper symbols. But is there a direct way to do this? I even tried converting the string to another character set type string. But no luck.
    (Also when I print the text value to a JSP, I can see proper vales through Internet Browser.)
    Below is the sample program(read_n_print.jsp), sysout prints question marks in console, but JSP/HTML shows proper value in browser.
    <html>
    <%
         String value = request.getParameter("special_text");
         System.out.println("value " + value);
         if(value != null){
              byte[] bytes= value.getBytes();
              try {
                   String output = new String(bytes,"ISO-8859-1");     
                   System.out.println("output " + output);     
              } catch (Exception e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    %>
    <head>
    <title>Insert title here</title>
    </head>
    <body>
    <form method="post" action="./read_n_print.jsp">
    <input type="text" name="special_text" value=""> <input type="submit" value="Go" > <br>
    <font size="8">Value entered is <%= value %></font>
    </form>
    </body>
    </html>

    Hi DrClap,
    Thanks for your reply.
    That article was helpful in understanding character conversions. And it works fine for JSPs.
    But when I tried to apply the same in JSF it does not work. May be this is not the right forum to dicuss JSF related things. But if you know how pageEncoding and contentType can be mentioned in JSF. I am using myfaces and I have tried <h:form id="SearchForm" acceptCharset="UTF-8" accept="text/html;charset=UTF-8">. Didnt work....

  • Problems with using special characters in Interactive Report Search

    Hi!
    I am currently developing an Application on Application Express 3.1.2.00.02 including a page with an Interactive Report, facing the problem that I cannot use special german characters in the Searchbar.
    So if i try to find a name like 'Schröder' the created Filter looks like this 'Schröder' and i won't get any valid search results. By the way the rest of the application supports these special characters like using them in Buttons or any other Page elements.
    Does anyone have a clue how to fix this problem, because it's driving me nuts ;)
    Thanks in advance
    Philipp
    Edited by: philipp_m on 10.06.2009 11:15

    Does noybody have a clue how to solve this problem. I tried to find out where the Problem occures. The Ajax Request looks like this
    f01     contains
    f01     Schröder
    f01     15
    p_flow_id     100
    p_flow_step_id     50
    p_instance     3176950818119673
    p_request     APXWGT
    p_widget_action     QUICK_FILTER
    p_widget_action_mod     ADD
    p_widget_mod     ACTION
    p_widget_name     worksheet
    p_widget_num_return     15
    x01     14175446766823030
    x02     14176526259823035
    So I guess it has to be inside the Javascript file (apex_ns_3_1.js). I hope someone can help me.
    Bye
    Philipp

  • Problem with german special characters in APEX

    Hi,
    we have a problem with all the special characters in german language in our Application.
    APEX version 3.1.0.00.32 is installed on a oracle database 9.2.0.6.0
    The nls_characterset of the database is: American_America.WE8ISO8859P1
    We have modified the wdbsvr.app file on our HTTP-Server like it's shown in the installationguide for APEX and have set the nls_lang parameter to American_America.AL32UTF8.
    If I look at the source code of the html-pages of our application, there are already the following settings in the header of every page:
    meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
    With this settings all the german special characters like ä ö ü are not shown correctly in the browser.
    What can I do that the pages are shown correctly?
    Thanks for help!

    Hi Petra,
    ok, so my guess was correct. So the solution is to set the charset attribute in the HTML header to "charset=UTF-8". This is actually the way it should be. But I'm wondering why it is not in your case? Are you using a custom template for the page(s) in question where the charset attribute is set to a custom value? The meta tags in the HTML header are usually set by/through the #HEAD# substitution string in the header definition section of the page template, cp. one of the page templates in Shared Components --> Templates. And as far as I know you are not able to change this substitution string, you can only switch the inclusion on/off with the option "Include Standard CSS and JavaScript" in each page definition. (I might be mistaken, though, I'm quite new to APEX...)
    Regards
    Frank

  • Mysql problem with german special characters

    hi,
    I wrote a software and it worked quite good, but after I installed it on a new machine with j2se 1.4 I've problems with the german special characters.
    this code works good on the old machine (jdk 1.3.1) and prints the wanted characters like �,�,�.
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    java.sql.Connection conn;
    conn = DriverManager.getConnection("jdbc:mysql://localhost/testdb?user=testuser&password=xxxx");
    Statement s = conn.createStatement();
    ResultSet r = s.executeQuery("select something from testtb where id='1'");
    r.first();
    System.out.println( r.getString(1) );
    but on the new machine (j2se 1.4) I only receive the character ?.
    I updated my org.gjt.mm.mysql to the current MySQL Connector/J 3.0.9 and added
    conn = DriverManager.getConnection("jdbc:mysql://localhost/testdb?user=testuser&password=xxxx&useUnicode=true&characterEncoding=ISO-8859-1");
    but I've got still the same problem.
    Thanks in advance
    Markus

    with "wanted characters like �,�,�"
    I meant: like &#x00E4;,&#x00FC;,&#x00F6;

Maybe you are looking for

  • How can I print my A4 Book now in 8"x10.5"? RESIZE?

    Hello I have a book about 700 Pages already been printed a couple of times in A4 size, Now the sponsor can only print it in max 8"x10.5" This means the entire Book/file needs to be adjusted to this new size  in order to get it printed. I need to know

  • Universal dock s-video out to tv

    Does anyone know if you can use the video out on the universal dock to see what music/song is currently playing? I wanted to use my ipod like a jukebox and display everything on my tv. I have everything hooked up right and the settings are right. I w

  • Connecting Macbook to AVR reciever

    Im trying to connect my 2009 Macbook to my Harman Kardon AVR 1650 through an HDMI cable so I can watch video on my TV. The reciver is obviously  connected to the HD TV. When I plug in the cord to HDMI 3 and select the correct input (HDMI 3), my compu

  • Scatter Plot - Field Label instead of Legend

    I am using the scatter plot wizard to create a chart. As it works currently, it plots all of the points on the graph as a unique shape/color, and has a legend with the field name for reference. Is there anyway to place the field name next to the poin

  • Cisco Prime - Running LMS on a Windows PDC

    Greetings, Due to certain limitations we must run Cisco Prime on a Windows PDC (Primary Domain Controller).  This isn't supported, and the install/upgrade won't let you accomplish this, but I think on our Windows 2008 R2 Server Cisco Prime was origin