Is it possible to convert � to a hex character?

I'm looking for a character that represents the hex value of �
I've been looking through the internet but haven't found any encouraging leads or clues. I'm thinking it may not even be possible.
Any help will be appreciated.
Thanks in advance

At http://www.unicode.org you should be able to download tables. Alternatively you could write the character to a file and read it in as bytes and display the bytes in hex.

Similar Messages

  • Is it possible to convert an app from 12c to 11g?

    I am using both 11.1.2.4 and 12.1.2.0.
    If I have an app built with 12.1.2.0, which does not include any 12c specific features, is it possible to convert it to 11.1.2.4?
    I am asking because I have a Development environment that is 12c, but a Production environment that is 11g and I am not sure we will be able to upgrade the Production environment
    Thanks in advance..

    It's possible but not an easy task. As 12c uses newer stuff you have to test everything with great care. You might find some things you have to rebuild add they won't work in 11.1.2.4.0 (e.g. components which are only available in 12c. If you read the what's new doc for 12c and you find something you have used, prepare to rebuild this part.
    First thing to try ids to open the project in 11.1.2.4.0 and see if you can compile and run the app.
    Timo

  • Is it possible to convert text captions to Smart Shapes?

    Hello,
    I have a collegue that is using Cp 5 to record software simulations which then need to be brought into Cp6. The problem is that our standards (for software simulations) employ Smart Shape call outs (not the Cp 5.5 and earlier text captions).
    Is it possible to convert these text captions into our themed Smart Shapes either automatically inside Captivate 6 or by modifying the content within the CPTx file?
    Thank you,
    Shawn

    Hello Lilybiri,
    As always you are awesome! :-)
    >I don't believe an automatic switch will be possible, because smart shapes are totally different objects.
    I understand because there are a huge variety of shapes in either format. But I suspect that it should be easy to convert a text caption from any style to one specified smart shape style.
    Actually, I am asking before the simulations get started. So nothing has been done yet. I am unsure what you are suggesting I should do in the preferences under Cp 5.5. Are you suggesting that there is a way to convert 'some format' of text callouts, in a Cp5.5 demonstration simulation, to Smart Shapes in Cp6?
    >but since you already have created the simulations, it has to be done manually. Hoping for you that
    >someone has a bright idea, but I do not see one immediately.
    For anyone else in this situation, it would be handy to have a solution (rather than painstakingly convert each manually).
    I am wondering if this might be a relatively easy search/replace within one of the xml files within the CPTx file. I'm going to look at this tonight.
    Thanks for your assist.

  • Is it possible to convert PDF file into HTML

    Dear friends
    Is it possible to convert PDF file into HTML. I have few hundread PDF files i like to convert this files into HTML. I hope it can be done through Java but i don't know how to start this coding. anybody can give me a brief idea to go ahead.

    Why do you want to do this yourself? I quick search on Google showed several utilities to do this, some freeware, some commercial.

  • Is it possible to convert to an AIFF file in itunes 10 and beyond, and if so what is the procedure?

    Hello.  Is it possible to convert to an AIFF file in itunes 10 and beyond, and if so what is the procedure? 
    I use FCP7 and often have a sound loop or the like that I need in AIFF format, I normally use itunes to do the conversion, but have heard that version 10 no longer performs this task...?
    Thx for the help!
    MBP 2.6 GHz Intel Core 2 Duo - Mac OS X 10.6.7 - itunes 9.2.1 (5)

    Doolittle wrote:
    I can't find convert to aiff as an option in itunes 10.
    It still works the same as in past releases.  Go to Edit > Preferences > Import Settings, and set "Import Using" to "AIFF Encoder," and then the option will be available.  Consult this document for details: 
    http://support.apple.com/kb/HT1550

  • Is it possible to convert *.doc to *.rtf in a java program?

    Hi :-)
    My challenge is to develop a web-app in ADF Faces. Now i verify some technologies to store mailmerge letters in an easy way. The user of my web-app should upload a MS Word mailmerge document and a csv data source file. My web-app must thereupon convert this two files to a pdf per csv-row and store it to a ftp.
    I have build a demo using the open office API. But now i want to try the same by using apache POI and FOP. I can merge the doc files with POI and i can create PDF with FOP.
    My problem is, that POI cant convert to a rtf file and FOP uses an rtf file to create a pdf. I dont know, if its possible to convert a doc file to a rtf file. If its possible, is there an API, which will help me out?
    Regards
    Majo
    btw...I am not sure, if its the right forum for my question :-/

    HeHe, no sorry. The binary file is the same, because Windows bind doc and rtf with MS Word, it opens the file, which you have renamed to *.rtf in MS Word. But as a doc document, not as a rtf file ;-)
    And i dont want to open the rtf file in MS Word. I want to process the rtf file in java.
    Thanks
    Majo

  • I have acrobat 11 standard is it possible to convert pdf files to word files ?

    I have acrobat 11 standard is it possible to convert pdf files to word files ? or is it just possible in the Pro version.

    It sounds to me like you're using Reader, not Acrobat. Make sure you open
    the PDF file in Acrobat, and then go to File - Save As Other - Microsoft
    Word.
    On Thu, Mar 12, 2015 at 2:55 PM, nickk23435928 <[email protected]>

  • Exception occuring while i'm trying to convert decimal to Hex

    Hello all you genius people, please help me out. I'm using this simple code(given below) to read String from a file then convert it to Hex and write in anoher file. But i'm getting this exception that, after reading few lines it gives such exception:
    java.lang.NumberFormatException: For input string: "2826111134"
    import java.io.*;
    public class DecimalToHexConv {
      String line;
      String hexEsn;
      String temp;
      int esn=0;
      public DecimalToHexConv(){
      try{
        FileWriter fwr = new FileWriter("CTGHLR201005_out.txt");
        BufferedReader bfr = new BufferedReader(new FileReader("testin.txt"));
        while((line=bfr.readLine())!=null){
          line= line.replace('|',';');
          String spl[] = line.split(";");
          esn = Integer.parseInt(spl[2].toString().trim());
          hexEsn = (Integer.toHexString(esn)).toUpperCase();
          temp= spl[0]+"|"+spl[1]+"|"+hexEsn+"\n";
          System.out.print(temp);
          fwr.write(temp);
        fwr.close();
      catch(Exception e){
        System.out.println("Exception: "+e);
      public static void main(String[] args) throws Exception {
        DecimalToHexConv dtc = new DecimalToHexConv();
    }output:
    4702181500|11800467|2FA42C8B
    4702825345|11704172|620A4CFC
    4703200000|11200000|52B53DB9
    4703200001|11200001|52156AC7
    Exception: java.lang.NumberFormatException: For input string: "2826111134"
    testin.txt:
    4702181500|11800467|799288459
    4702825345|11704172|1644842236
    4703200000|11200000|1387609529
    4703200001|11200001|1377135303
    4703200046|11200046|2826111134
    4703200000|11200000|1387609529
    4703200001|11200001|1377135303
    So after converting first 4 lines i got the exception. Please hep me out.. that what is wrong???
    Regards
    Sahrear

    But i'm getting this exception that,
    after reading few lines it gives such exception:
    java.lang.NumberFormatException: For input string:
    "2826111134"It's because the biggest number an int can hold is 2147483647. You can use long insted. It can hold bigger numbers but understand that it has an upper limit too.

  • Is is possible to convert the movies purchased on itunes to DVD?

    Is is possible to convert the movies purchased on itunes to DVD? (In other words you would be burning the movie or tv shows to a blank DVD).

    You can store just what you want on the external. Just set up folders for what you want. I have a music folder, movies and TV shows, and pictures folders. I also have mine partitioned for OSX and Windows. I have a few files I need if I am running on windows so I keep them on the windows side. I always keep a back up of my documents and a few other files it is a pain to download on the external.
    You can also copy every folder and file on your machine to the external if it is big enough. This is a true copy not a back up file generated by a back up program. I like to do this if I get adventuresome and plan to do some major experimenting with my software. Saves having to reload everything if it crashes.
    TTFN
    Doc

  • Converting BLOB to HEX and HEX to BLOB

    Hi!
    I have a table that stores pictures as BLOB. Due to some project rules, I need to be able to convert this image to a CLOB (represented as a HEX String) and, after that, I need to convert this HEX String back to BLOB.
    I already created the function that converts BLOB to HEX. See below:
    CREATE OR REPLACE FUNCTION blob_to_hex (blob_in IN BLOB)
    RETURN CLOB
    AS
        v_clob    CLOB;
        v_varchar VARCHAR2(32767);
        v_start   PLS_INTEGER := 1;
        v_buffer  PLS_INTEGER := 32767;
    BEGIN
        DBMS_LOB.CREATETEMPORARY(v_clob, TRUE);
        FOR i IN 1..CEIL(DBMS_LOB.GETLENGTH(blob_in) / v_buffer)
        LOOP
           v_varchar := DBMS_LOB.SUBSTR(blob_in, v_buffer, v_start);
           DBMS_LOB.WRITEAPPEND(v_clob, LENGTH(v_varchar), v_varchar);
           v_start := v_start + v_buffer;
        END LOOP;
       RETURN v_clob;
    END blob_to_hex;But, I´am having some difficulties to convert the HEX CLOB back to BLOB.
    Does anybody know how could I do this?
    Thanks a lot!!!
    Regis

    try this procedure
    first create directory BLOB_DIR
    CREATE OR REPLACE DIRECTORY
    BLOB_DIR AS 'C:\temp';
    CREATE OR REPLACE PROCEDURE BLOB_LOAD(filename varchar2)
    AS
    lBlob BLOB;
    lFile BFILE := BFILENAME('BLOB_DIR', filename);
    BEGIN
    INSERT INTO O_CONTRACT_IMAGES
    (CONTRACT_NO,CONTRACT_Year,CONTRACT_blob)
    VALUES (1,2, empty_blob())
    RETURNING CONTRACT_blob INTO lBlob;
    DBMS_LOB.OPEN(lFile, DBMS_LOB.LOB_READONLY);
    DBMS_LOB.OPEN(lBlob, DBMS_LOB.LOB_READWRITE);
    DBMS_LOB.LOADFROMFILE(DEST_LOB => lBlob,
    SRC_LOB => lFile,
    AMOUNT => DBMS_LOB.GETLENGTH(lFile));
    DBMS_LOB.CLOSE(lFile);
    DBMS_LOB.CLOSE(lBlob);
    COMMIT;
    END;
    Edited by: Hossam Kasem on 20-Apr-2011 05:56

  • Re: Is it possible to convert several licenses  to one shared license

    Re: Is it possible to convert several licenses  to one shared license?

    Hi Signe Hansen,
    You cannot convert several retail license to volume.
    Regards,
    Romit Sinha

  • I am using sound and vibration assistant 7.0. I want to know if it is possible to convert the mag and phase plot to real and imaginary plots ??

    I am using sound and vibration assistant 7.0 . I am using the impact test example given . I want to know if it is possible to convert the magnitude phase plot to real and imaginary plot in the sound and vibration assistant 7.0 ???

    If you have LabVIEW, you can create a user step to perform the conversion in version 7.0. Sound and Vibration 2009 has a checkbox in the Frequency Response configuration page to export the real and imaginary components. Short of upgrading SVT, you can also install the evaluation version of NI LabVIEW SignalExpress 2009, and this will also upgrade the Frequency Response Step which is shared between the two products (but then you don't get all the other features that were also added in SV 2009).
    Here are some links that may be useful to help decide whether you want to upgrade:
    http://www.ni.com/soundandvibration/
    http://www.ni.com/labview/signalexpress/
    Doug
    NI Sound and Vibration

  • JMS Correlation ID not converting to EBCDIC Hexa

    We are using the PI 7.1 system on a AIX platform.
    We use the JMS adapter to send messages to a MQ Queue manager on a AS400platform.
    WebSphereMQ transport protocol is in JMS adapter.
    We are generating custom dynamic correlation id using a UDF.
    Expectation is to receive the correlation id in Ebcdic format because the
    receiving end is a AS400 system.
    But what I receive there is a Ascii Hexa.
    For a example we are sending the correlation id as 0180000012. (ASCII)
    What MQ receive is 30313830303030303132 (ASCII HEX)
    Where what MQ should receive is F0F1F8F0F0F0F0F0F1F2 (EBCDIC HEX)
    I need help to find out why JMS adapter is converting the correlation id
    in to ASCII HEX without converting to EBCDIC HEX.
    Appreciate a lot if any one can provide some help on this.
    Thanks a lot,
    Tania.

    I am not sure if I have understand the issue correctly.
    Do you create an ASCII string and the ASCII characters are not converted into EBCDIC,
    or do you create a HEX String?
    Or does the JMS adapter converts your ASCII string to Hex?
    I have the impression that the behaviour is a design gap, which nobody has noticed before.
    A work around could be in converting the ASCII to EBCDIC inside the UDF,
    Report this to SAP

  • HT2619 is it possible to convert a mp3 file in a text?

    is it possible to convert a mp3 file in a text in final cut?

    Huh?
    You can use iTunes or QuickTime Pro to convert an MP3 file into an AIF file for use in FCE.  But convert to a text file?  I don't think so.  But if that is what you really want to do, look here: https://www.google.com/search?client=opera&q=mp3+to+text&sourceid=opera&ie=utf-8 &oe=utf-8&channel=suggest&gws_rd=ssl
    -DH

  • Is it possible to convert .doc to pdf  ?

    Hi..
    I am very new to Livecycle Workflow...! I just want to know whether it is possible to convert .doc to pdf  ?
    Just by googling i came to know that CreatePDF2 Service will do this Conversion ! But it throws me an Exception like "Conversion Exception :" Cannot connect to Adobe Service "...!
    Can u guys pls help me out to slove the problem ?
    Thanks & Regards
    Karthik.

    you don't know the format of a word doc? well, that's good for you because it's a nightmare.
    - check POI (http://jakarta.apache.org/poi/index.html) to see if you can load-up the .doc then generate the .pdf with iText
    - personally i use the Open Office Bean to open the .doc, i save it in .sxw (OO format which is a jar of different XML files), then i use XSLT to transform content.xml in .fo then use FOP to build the PDF. sounds crazy but works fine (only on a machine with graphic support - not via Telnet, etc...)

Maybe you are looking for

  • Can't find "Check for updates" option in Help menu

    Hello I am planning to update several adobe reader installations over a windows domain. First of all, I tried to do it in one particular machine without administrative privileges (not being Local Administrator). I am surprised of not finding the "Che

  • Launch Error - This file cannot be launched

    Hi all, I renamed a class file in a flash build and now every time I try to debug my project (cmd+F11) I get an error window saying Launch Error - This file cannot be launched. I have tried wiping the project and moving the files in to a new one and

  • GRC 10: Centralized Emergency Access  - SPM Questions

    Can Firefighter logon using the Netweaver Business Client to launch Firefighter ID? Is that mandate to use GRC system to launch Firefighter ID using GRAC_SPM transaction code? or can the user logon to local system as well? What about Portal based sys

  • Why does it take so long to render a quicktime and/or wmv file?

    I hope you can help with this! It's taking me forever to save a project as a qt file. I'm saving in expert settings with LAN/Intranet or broadband-high as the setting. In Imovie 4.0.1 I could usally render a 6+ minute project in under 10 minutes with

  • Flash web radio help!

    I have been able to create a little flash based radio that would pick up music from flash media server. Now what i want to do is that create a small tab at the bottom of the screen that would be dedicated to this little radio. as far as i know i can