How can I remove Garbage characters like ’ which can be replaced by '

there are many such characters such as –,• which have different meaning when I take it to the html editor Kindly give some solution so that i can save my time.

View menu > character encoding set to unicode probably, but when character encoding is fouled up by the sender it is really hard to guess what is correct.

Similar Messages

  • How do I remove a gmail calendar which has inadvertantly become merged with my home apple calendar

    how do I remove a gmail calendar which has inadvertantly become merged with my home apple calendar?
    I have to view the gmail calendar as well, but now some entries are appearing as duplicates.
    Currently I view my own apple calendar (home), a gmail calendar, a googlemail calendar and a friend's icloud calendar  on the same screen - (all view only).
    Hiding or deleting either the gmail OR the Home calender leaves me with missing entries.
    Showing both gives duplicates.
    Help please.
    Earlier today, I lost my friend's calendar (icloud on an iPad) when he accidentally changed something.   Trying to get that back (unsuccessfully) he or I must have inadvertantly changed someting, but don't know what.
    I also view my calendar on ipad2 and iphone 5, but have not touched any of these settings.
    Getting desperate! - the gmail and googlemail are the church calendars and there will be chaos if I can't get this fixed!

    pretty sure in the settings -> email and stuff or maybe the notifications you can disable the gmail calendar at least theres where mine are along with the facebook and the other calendars you can add and remove

  • How do I remove things Fromm iCloud which I no longer want

    How do I remove stuff from iCloud which I no longer want and or need any more?

    Stuff like what?
    iCloud syncs contacts, calendars, tasks, reminders, bookmarks etc from your computer - so if you remove those items from your computer, they will no longer appear on iCloud.

  • How do I remove the target-like images from my pdf?

    How do I remove the target-like images from my pdf? There are four of them, one in the very top center, very bottom center, far left center, and far right center.

    Are you saying they haven't always been there? If they have been, they're likely registration marks.

  • I accidentally erased my keychain passwords, how can I replace it?  I thought I was deleting one account but it deleted everything.  I now keep getting pop-ups asking me for a keychain password...which I don't remember ever creating.

    I accidentally erased my keychain passwords, how can I replace it?  ( I was in the keychains folder on the password link when i pressed delete). I thought I was deleting one account but it deleted everything.  I now keep getting pop-ups asking me for a keychain password...which I don't remember ever creating.

    Try running Keychain Access/First Aid and resetting the original keychain.
    Keychain Reset
    Keychain Issues - Resolve  see post by Kappy

  • How can I replace the cursor in the below query?

    I have this below query which calls a stored procedure that takes only 1 item's attributes at a time. But because of performance problems we are
    required to remove the cursor. How can I replace the below cursor logic with set operations or CTE? Please advice.
    DECLARE db_cursor_ava CURSOR
    FOR
    SELECT t.[agent-id],
    t.[start-date],
    t.[end-date],
    t.[monitor-days],
    t.[monitor-start],
    t.[monitor-end],
    t.[timezone-offset]
    FROM @tmpAgentPeriodTimeRange t
    OPEN db_cursor_ava
    FETCH NEXT FROM db_cursor_ava INTO @agentID_ava,
    @stDateTime_ava,
    @endDateTime_ava,
    @monDays_ava,
    @monSt_ava,
    @monEnd_ava,
    @offset_ava
    WHILE @@FETCH_STATUS = 0
    BEGIN
    DELETE
    FROM @tmpMonitorPeriod
    DELETE
    FROM @tmpFinalResult
    SET @runID = 1
    IF(@endDateTime_ava>DATEADD(MI,@offset_ava, GETUTCDATE()))
    BEGIN
    SET @endDateTime_ava=DATEADD(MI,@offset_ava, GETUTCDATE())
    END
    INSERT INTO @tmpMonitorPeriod
    EXEC core.usp_GetMonitoringPeriod
    @startDate = @stDateTime_ava,
    @endDate = @endDateTime_ava,
    @monitoringDays = @monDays_ava,
    @monitoringStart = @monSt_ava,
    @monitoringEnd = @monEnd_ava
    SELECT @maxID = MAX(tm.id)
    FROM @tmpMonitorPeriod tm
    FETCH NEXT FROM db_cursor_ava INTO @agentID_ava,
    @stDateTime_ava,
    @endDateTime_ava,
    @monDays_ava,
    @monSt_ava,
    @monEnd_ava,
    @offset_ava
    END
    CLOSE db_cursor_ava
    DEALLOCATE db_cursor_ava
    mayooran99

    You've been down this path before  - and the response is exactly the same.
    how to replace cursor logic
    And I'll suggest that you post the entire code - since you repeatedly delete 2 table variables but only populate one. The setting of @maxID also seems to have no purpose. And perhaps the issue here isn't the cursor but the general approach.  Who knows
    - but it appears you may have prematurely assumed that the cursor is the problem.

  • How Can I replace newScale Text Strings with Custom Values?

    How Can I replace newScale Text Strings with Custom Values?
    How can I replace newScale text strings with custom values?
    All  newScale text is customizable. Follow the procedure below to change the  value of any text string that appears in RequestCenter online pages.
    Procedure
    1. Find out the String ID of the text string you would like to overwrite by turning on the String ID display:
    a) Navigate to the RequestCenter.ear/config directory.
    b) Open the newscale.properties file and add the following name-value pair at the end of the file:res.format=2
    c) Save the file.
    d) Repeat steps b and c for the RmiConfig.prop and RequestCenter.prop files.
    e) Stop and restart the RequestCenter service.
    f) Log  in to RequestCenter and browse to the page that has the text you want  to overwrite. In front of the text you will now see the String ID.
    g) Note down the String ID's you want to change.
    2. Navigate to the directory: /RequestCenter.ear/RequestCenter.war/WEB-INF/classes/com/newscale/bfw.
    3. Create the following sub-directory: res/resources
    4. Create the following empty text files in the directory you just created:
    RequestCenter_0.properties
    RequestCenter_1.properties
    RequestCenter_2.properties
    RequestCenter_3.properties
    RequestCenter_4.properties
    RequestCenter_5.properties
    RequestCenter_6.properties
    RequestCenter_7.properties
    5. Add the custom text strings to the appropriate  RequestCenter_<Number>.properties file in the following manner  (name-value pair) StringID=YourCustomTextString
    Example: The StringID for "Available Work" in ServiceManager is 699.
    If you wanted to change "Available Work" to "General Inbox", you  would add the following line to the RequestCenter_0.properties file
         699=General Inbox
    Strings are divided into the following files, based on their numeric ID:
    Strings are divided into the following files, based on their numeric ID:
    String ID  File Name
    0 to 999 -> RequestCenter_0.properties
    1000 to 1999 -> RequestCenter_1.properties
    2000 to 2999 -> RequestCenter_2.properties
    3000 to 3999 -> RequestCenter_3.properties
    4000 to 4999 -> RequestCenter_4.properties
    5000 to 5999 -> RequestCenter_5.properties
    6000 to 6999 -> RequestCenter_6.properties
    7000 to 7999 -> RequestCenter_7.properties
    6. Turn off the String ID display by removing (or commenting out) the line "res.format=2" from the newscale.properties, RequestCenter.prop and RmiConfig.prop files
    7. Restart RequestCenter.
    Your customized text should be displayed.

    I've recently come across this information and it was very helpful in changing some of the inline text.
    However, one place that seemed out of reach with this method was the three main buttons on an "Order" page.  Specifically the "Add & Review Order" button was confusing some of our users.
    Through the use of JavaScript we were able to modify the label of this button.  We placed JS in the footer.html file that changes the value of the butt

  • How can I Replace a Hard Drive on a 160gb iPod Classic?

    How can I Replace a Hard Drive on a 160gb iPod Classic? I am considering buying an iPod Classic off of eBay which is described as 'broken' and having the 'Red X' showing up on the screen. The seller is starting the bid at a very low price, which raises some concerns for me. For this thread, let us assume that the iPod has a broken hard drive that needs to be replaced in order to function properly. I am assuming that merely 'restoring' it would not suffice. How would I be able to replace the hard drive myself, without bringing it in to a store? I have never fixed an iPod's hardware before, nor a computer or any electrical device. I am a novice at such things. Would I be able to fix it myself without wasting money on a broken iPod and new hard drive? Please provide instructions on how to do so =)

    Hello there,
    Yes, the red X icon is usually a sign of a bad or damaged hard drive. Sometimes, restoring the iPod will resolve the issue, but rarely. Other users were able to smack the ipod against the side of their leg and gain back full functionality of the iPod.
    However, if no such luck with either, your next option would be to replace the drive. For this task, you can either opt to repair and replace the hard drive yourself, or opt to send it into a third party repair business to do the job for you.
    I use the guides at [www.ifixit.com|http://www.ifixit.com> to help me replace broken parts on an iPod. These guides provide excellent step-by-step instructions as well as photos on how to repair any part from an iPod.
    Some other good sites for purchasing repair parts include the following:
    [iDemiGods|http://www.idemigods.com>
    [RapidRepair|http://www.rapidrepair.com>
    [iResq|http://www.iresq.com>
    Lastly, I would also like to remind you that ebay also has several great deals on excellent iPod replacement parts. It's where I purchase a majority of mine.
    Hope this helps.
    B-rock

  • How can I replace an administrators account?

    I have an older Powerbook G4 laptop that someone else would like. How can I replace the adminsitrator's account?

    Hi Bob,
    2 ways to go...
      1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
       2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
          *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
       3. Click the Erase tab.
       4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
       5. Select your Mac OS X volume.
       6. Highlight the drive, select Partition Tab, then Format type... MacOS Extended Journalled, select the Security Options button, choose Zero Out Data, Erase... after completion do a new install.
    Or...
    Open System Preferences>Accounts, unlock the lock, click on the little plus icon, make a new admin account, log out & into the new account.
    In the same pref pane highlight your old account, click the little minus icon, then use Disk Utility to Secure Erase Free Space.

  • HT5502 AFTER UPGRADING TOMOUNTAIN LION SAFARI 6.0 DOESN"T WORK HOW CAN I REPLACE IT OR UPGRADE IT?

    AFTER UPGRADING TOMOUNTAIN LION SAFARI 6.0 DOESN"T WORK HOW CAN I REPLACE IT OR UPGRADE IT?

    An answer will require more specific information of the problems you are experiencing Mpittas2.
    In general, if you installed any third party anti-virus utilities, get rid of them. They can cause problems like this.
    There is no need to post your question multiple times. If you don't get an answer right away give it some time, a few hours at least, and please deselect your caps lock key. This will increase the likelihood of receiving competent assistance.
    Thanks!

  • How can I replace iCloud contacts with up-to-date contacts on my Macmini?

    Originally I used iCloud when it first was released. My contacts went into the cloud.  I stopped using iCloud and maintained my Contacts on my Macmini. All of my up-to-date information which includes additional contacts and revisions are on the Mac mini.  iCloud wants to work with my old information but I'd rather replace the information on iCloud with the information on my computer.  How can I replace what's in iCloud with my edited and updated information?

    Open Address Book on your Mac, click All Contacts, select a single contact, press Command-A to select them all (they should all be highlightes), then go to File>Export>Export vCard and save this on your desktop.  Then delete all your iCloud contacts by going to icloud.com on your computer, log into your iCloud account and open Contacts, click on All Contacts, to the right click on any single contact to select it, click on the gear-shaped icon at the bottom left and choose Select All, then press the Delete key on your keyboard to delete them all.  Then click on the gear-shaped icon again, choose Import vCard and navigate to the vCard you saved earlier to import your contacts to iCloud.

  • How can i replace asm sparc v8plus instruction in to v8

    Hi Friends
    I am installing the log4cxx product and facing the problem at asm code.
    Acutally that code i swritten for v8plus sparc versions but my whole project is base on sparc generic , so using arch as generic i want to install ,the stament which giving error is
    asm(" cas [%o0], %l0, %l2"); // if (*p = l0) swap([o0], l2);
    so please help me How can i replace this statement for work fine on sparc generic architecture
    Regards
    Jayant

    The CAS instruction is available only on v8plus or later architectures. The instruction is an atomic integer comparison used to synchronise mutlithreaded operations.
    Without this instruction, you need to perform synchronization some other way. No suitable atomic instruction is available on prior SPARC architectures.
    You have two choices:
    1. Support only v8plus (UltraSPARC I) architectures or newer, in which you need not modify anything. You will want to specifiy v8plus architecture in building the entire application, however, to get better code generation.
    2. Determine what the function containing this code is doing, and re-write it some other way, such as by using mutex operations from the thread library. The resulting code will be much slower.
    I suggest option 1. Do you really need to support such old SPARC chips? Sun has not sold or supported such systems for many years, and current Solaris versions won't run on them.

  • HT4993 HOW CAN I REPLACE MY SCREEN IF ITS CRACKED

    HOW CAN I REPLACE MY SCREEN IF ITS CRACKED

    Apple does this by replacing the iPhone for a cost of $149. You get a perfect iPhone 4 exactly like yours, same color, same GB, everything same. Or you can try a repair place with no garantees from Apple.

  • How can I replace the Special Character        '

    Hi Guru ,
    I want replace one Special Chareacter into space .
    Example -
    There have one variable .
    L_VAR = BANGA'LORE
    I want to delete the special character ( ' ) which is between A and L .
    Whenever I am tryiny to use replcae statement , it will show one Error Message .
    REPLACE ''' IN L_VAR WITH ' '.
    IT WILL GIVE ONE ERROR MESSAGE - " Literals that take up more than one line are not permitted."
    How Can I replace this .

    Hi Tarak Dey,
    This error
    Literals that take up more than one line are not permitted
    is not for the Replace statement. You would have missed a PERIOD in some statement before this.
    When we see the code that you have pasted,
    L_VAR = BANGA'LORE
    here period is missing at the end of the line. The error could be because of that.
    Kindly check.
    Best Regards,
    Ram.

  • How can I replace the SIM on Droid Ultra?

    How can I replace the SIM on Droid Ultra?

    SIM cards are free at your local Corporate Verizon store.
    SIM Card - Inserting/Removing - DROID Mini / DROID Ultra / DROID Maxx by Motorola

Maybe you are looking for