9.2 convert ASCII to UTF8 welsh language

hello
I have a 9.2 ascii database that i cant convert to UTF8 yet
1 for an output (util file) i need to convert an ascii text string to utf-8 on export
2 i have two characters that are not supported by ascii, ŵŷ the users will represent these by typing w^y^
I tryed using UNISTR but non of the characters below are corectly converted
SELECT UNISTR(ASCIISTR( '剔搙)) FROM DUAL ;
how would you recomend converting a ascii latin 1 extended string to UTF-8 for export?
is it sencible to use the character replacement plan above for ŵŷ?
thanks
james

Probably the unconverted characters are not contained in the first charset.
If this is right.
http://en.wikipedia.org/wiki/Windows-1252
...there is no conversion for values outside the first charset.
But I may made a mistake.
Are you sure Â, â, î, Ê, ê and ô are in the 1252 charset?
I am not able to see if there is a difference between the similar chars in the table on wikipedia and the ones you posted, that is why I asked.
Anyway this output seems to verify my indication.
Processing ...
SELECT convert ('Ââî€Êêô','WE8MSWIN1252','UTF8') FROM DUAL
Query finished, retrieving results...
CONVERT('¨âêô','WE8MSWIN1252','UTF8')
¨¨¨¨                                    
1 row(s) retrieved
Processing ...
SELECT convert ('Ââî€Êêô','UTF8','UTF8') FROM DUAL
Query finished, retrieving results...
CONVERT('¨âêô','UTF8','UTF8')
¨âêô                         
1 row(s) retrieved
Processing ...
SELECT convert ('Ââî€Êêô','UTF8','WE8MSWIN1252') FROM DUAL
Query finished, retrieving results...
CONVERT('¨âêô','UTF8','WE8MSWIN1252')
¶¨Ç?¶îÇ?¶¨Ç?¶ô                          
1 row(s) retrieved
Processing ...
SELECT convert ('Ââî€Êêô','WE8PC858','UTF8') FROM DUAL
Query finished, retrieving results...
CONVERT('¨âêô','WE8PC858','UTF8')
1 row(s) retrieved
Processing ...
SELECT convert ('Ââî€Êêô','UTF8','WE8PC858') FROM DUAL
Query finished, retrieving results...
CONVERT('¨âêô','UTF8','WE8PC858')
ƒ??Ç?¶¯Ç?ƒ??ƒ??Ç?                   
1 row(s) retrievedSome characters are not supported on my DB so try these queries on yours to prove it.
SELECT convert ('Ââî€Êêô','WE8MSWIN1252','UTF8') FROM DUAL;
SELECT convert ('Ââî€Êêô','UTF8','UTF8') FROM DUAL;
SELECT convert ('Ââî€Êêô','UTF8','WE8MSWIN1252') FROM DUAL;
SELECT convert ('Ââî€Êêô','WE8PC858','UTF8') FROM DUAL;
SELECT convert ('Ââî€Êêô','UTF8','WE8PC858') FROM DUAL;Bye Alessandro

Similar Messages

  • Convertion from ASCII to UTF8 on Oracle 8.1.7 via PLSQL

    I need to extract a string from a ascii db, put it into a variabile in a plsql procedure, then with a 'magic box' convert it into utf8 and put it into a new utf8 database.
    I need the magic box, does exist a tool, or package or procedure or..... that works like that?
    Thanks in advance!

    I suggest to post this message on the genaral RDBMS or PL/SQL forums
    Kuassi

  • Welsh Language Pack for SharePoint 2013

    Are there any plans to provide a Welsh Language pack for SharePoint 2013? There was one for 2007 and 2010 but Welsh is not on the list for 2013 as far as I can see (http://technet.microsoft.com/en-us/library/ff463597.aspx).
    Thanks
    Mark Salter
    Amgueddfa Cymru - National Museum Wales

    Hi all, we have contracted with a Sharepoint specialist who have produced numerous welsh / bilingual web sites. They are working on a business case to Microsoft in conjunction with certain agencies and focusing on how education sales would suffer without
    it. They seem to think that the likely date for release will be Q2 2014, Hope this helps, it will be too late for us and we probably won't run our intranet bilingually as a result.

  • HT2371 How can I put the Welsh language onto my daughter's iPod touch?

    I want my daughter to continue using the Welsh language while using her iPod and she has agreed to this also. I thought it might help her over the next few years as she is taking Welsh Full Course at GCSE level.

    maizytunwanted wrote:
    I want my daughter to continue using the Welsh language while using her iPod
    One way would be to use a wireless keyboard with the ipod.  There you can select the US Extended keyboard layout which lets you type the extra characters required, â, ê, î, ô, û, ŵ, ŷ and any other accents.
    Another way would be use the apps Unicode Map or UniKey to create a sort of custom keyboard layout with the extra characters that could be used for copy/paste operations.
    Another way would be to create keyboard shortcuts for the special characters in settings > general > keyboard > shortcuts.
    There is no way to add a Welsh version of the menus and dialogues for the device.

  • I want to convert the day into THAI language

    Hi All,
          I write a simple query using date conversion for THAI language. But the NLS_CALENDAR does not convert the DAY to Thai language but month and year shows in THAI only
    Please give the date format for THAI language.
    Query
    select
    DECODE (:p_language_id,
                   'th', TO_CHAR (sysdate,
                                  'DAY MONTH YYYY',
                                  'NLS_CALENDAR=''THAI BUDDHA'''
                   TO_CHAR (sysdate, 'Day MONTHYYYY') ) dates from dual
    Output:
    FRIDAY    สิงหาคม    2556

    Try this
    alter session set nls_language = 'THAI';
    select to_char (sysdate,'DAY MONTH YYYY')
      from dual;
    NLS_LANGUAGE
    Edit.. Perhaps NLS_DATE_LANGUAGE is much suited for your requirement. Check Hoek's solution.
    Message was edited by: Karthick_Arp

  • Converting ASCII to Binary

    Hello I need some help.
    I need to convert the ASCII data to Binary form. Like if i have the character 'A' and its ASCII is 65 then its binary would be 01000001.
    If there is any function/method available in java to convert ascii to binary, i would be really thanful.

    Hello I need some help.
    I need to convert the ASCII data to Binary form. Like
    if i have the character 'A' and its ASCII is 65 then
    its binary would be 01000001.
    If there is any function/method available in java to
    convert ascii to binary, i would be really thanful.
    byte ascii = 65;
    String binresult = "";
    for(int i=0;i<8;i++) {
      if(ascii%(2^i)=0) binresult += "0";
      else binresult += "1";
    }

  • Hello, what I have to access to convert the keyboard in swedish language

    Hello, what I have to access to convert the keyboard in swedish language
    Many thanks for helping me out

    Open System Preferences > Language and Text > Input Methods and mark Swedish

  • Convert ASCII File into HTML

    Hi All,
    I have a requirement to convert ASCII files (formatted files when opened through Textpad / Editplus) into HTML when its hyperlink is clicked from my application.
    The present code is that, the TXT file was streamed, html tags have been added and the entire file was re-written as HTML (based on char 12 / 32, as the case may be) and saved as JSP / HTML extension, and placed in a temp folder.
    response.sendRedirect() was used to open this file, which threw OutofMemoryException errors.
    It was also revealed that, if the original ASCII file was 40KB, the converted JSP file would be 160KB (around 4 times)
    The ideal conversion should be - add html tags in the new file and maintain the same formatting as the original ASCII file, & save the file with new extension.
    Thus I need a memory efficient method such that these files are converted on the fly by the application, yet the size kept minimum.
    Please suggest. Thanks in advance
    Regards
    Hari N

    160k is trival on a modern desktop OS. Especially since it is temporary. What heap size is the server using?

  • Welsh language support in Portal

    Does anyone know if/when the Welsh Language will be supported in Portal?
    UK Government related sites have to have this language as well as English.
    Regards
    Jenny

    Hi Jenny,
    I can support this - I am struggling to design an intranet in both Welsh and English.
    Who do we need to talk to in Oracle to get this one rolling.
    Bye the way I understand you did some work recently for the Forestry Commission in Edinburgh. I am also looking for some similar work to be undertaken but have not been offered your name as a consultant. Are you interested? Please mail me URGENTLY if you are.
    Cheers
    Clive
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jennifer Beech ([email protected]):
    Does anyone know if/when the Welsh Language will be supported in Portal?
    UK Government related sites have to have this language as well as English.
    Regards
    Jenny<HR></BLOCKQUOTE>
    null

  • HELP! Converting ascii to its decimal codes

    Does anyone know how to convert ascii code to its decimal equivalent? Is there a simple function that can do this?
    Thanks for any help!!

    Yes there is.
    String whatever = "whatever"
    char[] chars = whatever.toCharArray();
    for(int i=0; i<chars.length; i++) {
    System.out.println( (int) chars[i] );
    And since its friday I wont flame you for not reading
    a simple tutorial, though its hard not to
    ehmm, the square brackets around the chars[i] are replaced by
    non-squares, or not visible, but they ARE square brackets

  • Welsh Language Support in Pages and Keynote

    Is Welsh language supported within Pages like on Microsoft Office? If so - how do I set it up?

    You can switch your Mac to Welsh:
    Menu > Apple > System Preferences > Language & Text > Edit List > check Cymraeg > OK > drag to top of list
    There is however no dictionary for Welsh in Pages, but you can install 3rd party dictionaries in OSX, obtained from OpenOffice or other open sources or 3rd party commercial sources.
    Peter
    PS Which Welsh were you after? Always the problem for small langauges.

  • Using the Welsh language on a mac

    Hi there
    I know this isn't strictly the right place to ask this question, but I'm quickly running out of options, and all my online research has resulted in dead ends.
    We recently typset a textbook for a customer, who now wants that same book translated into Welsh.
    A translator has completed the translations and supplied us with a word file, but my problem is accessing the welsh-specific characters. I can see then in the word file, but when I copy and paste them in other apps, all I get is a question mark. When I look at the fonts themselves, I see there is no Welsh characters in the font at all, so how Word is managing to display them, I don't know.
    There are a few problematic characters, among them a 'w' with a '^', and a 'y' with a '^'. I have looked into buying Opentype Pro versions of all the fonts used in the book, but even these do seem not support the Welsh language.
    Has anyone had any prior experience in working in the Welsh language? I really don't want to manually create these characters and copy and paste every instance of them, as this would take extra time, and the book would then need to be read word-for-word to ensure accuracy to the supplied document.
    Any advice gratefully recieved.

    Thanks for all of your input.
    The answer (as most of you have touched on) is the Opentype 'Pro' fonts. Unfortunately, the book I am translating was initially created using older Postscript fonts, with a smaller character set, and there is no way the customer will want to fork out the 100s of pounds necessary to purchase all the fonts (we'd probably have to buy about 4 or 5 entire families) in the book in the 'Pro' or 'Com' types from Adobe.
    Looks like we're stuck with manually creating the character in inDesign.
    Shouldn't be too hard. If I search and replace a difficult character in the Word file with something like "§$", then once I've imported the file into CS4, I need one create the character once, copy it to the clipboard, and then search and replace the "§$" with the clipboard contents.
    It's a pity the customer didn't let us know from the outset that they intended to translate the book. We could have produced the book in 'Pro' fonts, and saved us (and you kind fellows) all this time.

  • Welsh language support

    While there is no Welsh language pack for the phone (so bad news for some 2 million people for whom Welsh is their first language), the pronunciation of Welsh place names on driving directions on the Here maps app has to be the worst I have ever heard. Welsh is an easy language to pronounce. Letters are pronounced the same wherever they are, and there are no silent letters. Come on Nokia, get with it!

    There you go …

  • How to convert ASCII to an integer number??

    Here I am trying to send the number 1000000 from microcontroller through UART and I am recieving the ASCII in labview. But i would like to get exact 1000000 in labview too. So i am trying to convert ASCII to integer but i am unable to do that.
    Solved!
    Go to Solution.

    danil33 wrote:
    Hello mallik,
                       Please don't feel bad.Smercurio and all other experts are trying to make us to do things by our own.THis will make us experts in labview.Thats why he told you to go through the tutorials.I have heard such type of advice(sometimes they scold us) so many times.Still Iam hearingIt is our fault that we won't go through the tutorials properly.Don't get annoyed.
    Besides, the question is quite unclear formulated and makes me almost assume, that the OP hasn't even bothered to look for a solution himself. Since the OP receives a string it would be logical to look in the String palette for some function to do what he wants. And inside that palette there is magically a String/Number Conversion palette, which sounds almost like it could contain at least one function that could do the right thing. (In fact it contains 3 that could work, but I'm sure the OP can find the most logical one for his number easlily).
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How to convert ASCII to CHAR?

    Hi, experts.
    Now I want to convert ASCII to CHAR, can you give me some methods? And I also want to know what's my ABAP Version.
    Thanks in advance!

    *After look so bad code that no work i did my own code, a gift for all you:*
    FORM CHARACTER_ASCII   using    p_letra
                                                 changing p_nro   type i.
    field-symbols: <n> type x.
    assign p_letra to <n> casting.
    move <n> to p_nro.
    ENDFORM.
    FORM ASCII_CHARACTER using    p_nro type i
                                               changing p_letra.
    DATA: c    TYPE c,
          x(4) TYPE x.
    FIELD-SYMBOLS: <fc>  TYPE c.
    x = p_nro.
    ASSIGN x to <fc> CASTING TYPE c.
    MOVE <fc>+1(1) to p_letra.
    ENDFORM.

Maybe you are looking for

  • How to restore application organization in launchpad

    I don't know what I did but my applications are no longer organized in launchpad. Tried restoring the dock database but it didn't work. Is there any file I can restore that will let me restore the old organization? thanks for your help john prokopek

  • HT1391 "File Get Info" doesn't work for all items in iTunes.

    I have some iTunesU videos where the Get Info is grayed out (not available).How do I find out where these files are located on my system? (Mac OS X). Thanks, Chris.

  • Need better inks

    I am at a loss to find information. I wish to purchase a new printer as I am beginning to make permanent copies of many old photographs for my family. I used a straight laser printer for many years, and since I have used color, it has been on the les

  • How do I create Meta Tags in Contribute?

    How do I create meta tags in Contribute. Also, how do I verify if they are inserted correctly in my code and working?

  • Solar system menu

    Hi everybody Does anybody have an example or where to found a tutorial that explain me how to make a menu that simulate a solar system or something like that? Thank you very much