Using special symbols '|' in bookmarks

One webpage I use a lot, after clicking some options, generates a URL with the  |  symbol.   When I bookmark the page, then go to show all bookmarks, the URL has been changed, replacing   |  with  %7C.  I can edit the stored URL, changing it back to  |,  but when I select that bookmark Safari puts  %7C in the URL again.   Anyway to stop this?
(And I know what that 7C is ASCII for the | symbol)

Not particularly the solution I was looking for, but Chrome does not seem to have this problem, I haven't tested other web browsers.

Similar Messages

  • Crash/lock when use special symbol palette in iDVD 6

    I tried to use the special symbol palette to try to insert special language characters in the comments on a picture in a slide show. On choosing special symbols from the menu line (Edit) all seemed to be fine until I tried to choose another category of symbol from the palette.
    At that point the symbol palette goes blank or only part of the information is visible and I can not close or move it. Often iDVD also locks and I have to force the application to quit.
    After that, the blank symbol palette keeps popping open (then closing) when working with other applications. Cold restarts do not cure the problem. Only solution I have found to stop the annoying pop up of the palette is to delete the file in user preference (com.apple.CharPaletteServer.plist)
    I try to do the same operation again with the same results. Do not know if this is a new problem or long standing since I had never used the palette before with iDVD. I can clear the created problem with the hanging palette, but the palette is esentially unusable. Character palette seems to be ok when using it from the international keyboard menu.
    (The reason to try to use the palette was I could not paste names in a language that do not use Mac's standard diacriticals. Why is there no font menu choice or ability to paste a name from another application that has font menus?)

    Wow-totally missed that-sorry. I guess i assumed that you didn't do that because that is about the only thing that I know of to fix it.
    I guess you could try Validating fonts
    http://docs.info.apple.com/article.html?path=FontBook/2.0/en/fb1003.html
    I'm out of ideas...but, I am certain that others will show up that have other ideas though.
    Sue

  • How can I use Greek symbols in a text in Pages? Greek symbols are not in the special character list.

    How can I use Greek symbols in a Pages text? Greek symbols are not included in the special character collection.
    I need to import for example a sigma from Word or Adobe illustrator and then Pages can recognise it. I can not find it from within Pages.

    Special character palette from the edit menu does have sigmas under European ... > Greek ...
    You can do a search at the bottom of the Special Character palette. Double click on the greek capital letter sigma. You will get a lot of sigmas.

  • Using integers/characters as bookmarks in rtf document

    first of all, i am self taught (ie i know practically nothing)
    i am trying to write an application which includes a database and produces standard letters with individual clients' details inserted. it is driving me insane.
    i am using rtf files and the code below (part of which i stole off the internet) copies everything just fine
    the code below works ok for a limited number of 'fields' - the integers in the 'switch' apply to characters such as # $ [ and they seem to be the integers the code uses.......(the code inserts my fields as it should)
    and this is where my ignorance kicks in big-time - i have tried everything, putting the character itself into the switch instead of the integer, using Unicode symbols - to expand the range so i can use more 'fields' - but i have to confess i am really out of my depth, i don't really understand Unicode........
    for example, i have tried using 'à' as an example, but no matter whether i use the integer (the default one recovered from the rtf document by this code), the character itself, or the Unicode value........the code just ignores it, does not insert the field i require, instead just re-types the à in the copy document.
    tall order, but is there any simple way for me to have a much wider range of 'bookmarks' so i can insert fields?
    void doLetter(String lettCode, Client client, Defendant defendant)
    FileReader in = null;
    out = null;
    currClient = client;
    currDefendant = defendant;
    lett = lettCode;
    try
    File inputFile = new File("C:\\testBill\\" + lett + ".rtf");
    in = new FileReader(inputFile);
    out = new FileWriter(createPath(lett));
    int c;
    while ((c = in.read()) != -1)
    System.out.print(" " + c);
    if (insertField(c)) continue;
    out.write(c);
    catch (Exception io)
    System.out.println(io.getMessage());
    finally
    try
    in.close();
    out.close();
    catch (Exception ex)
    System.out.println(ex.getMessage());
    private boolean insertField(int d) throws Exception
    int a = d;
    switch(a)
    case 35: doField(currClient.getTitle());
    return true;
    case 36: doField(currClient.getFirstName());
    return true;
    case 91: doField(currClient.getLastName());
    return true;
    case 93: doField(currClient.getFirstAddress());
    return true;
    case 126: doField(currClient.getSecondAddress());
    return true;
    case 95: doField(currClient.getThirdAddress());
    return true;
    case 94: doField(currClient.getFourthAddress());
    return true;
    case 124: doField(currClient.getPostCode());
    return true;
    case 33: doField(currDefendant.getPPI());
    return true;
    case 64: doField(currDefendant.getLastName());
    //System.out.println(currDefendant.getLastName());
    return true;
    return false;
    private void doField(String champ) throws Exception
    String whatever = champ;
    char cbuf[] = whatever.toCharArray();
    out.write(cbuf);
    }

    hi mel
    first of all thanks for taking the trouble to answer my query. i am rather embarrassed on two counts - first for the mistake in my code (i did admit to ignorance after all) and secondly that i seem to have found an answer to my problem - after about 3 months of tearing out what hair i have, perhaps posting here galvanised me, i don't know.
    re your solution, yes i could switch happily between the characters themselves, the integers the rtf document seemed to be using (cp1252 or something like that?) and unicode symbols, but the problem was the code was only recognising certain symbols, such as $ and [, but it steadfastly refused to recognise (and therefore act upon) the accented a character (and every other character which was not a letter or a number), which effectively left me with about 12 fields to play with in my standard letters.
    anyway, this seems to be working!:
    int c;
    while ((c = in.read()) != -1)
    System.out.print(" " + c);
    if (c == '%')
    char cbuf[] = new char[3];//in my rtf document i am using %001, %002 etc
    cbuf[0] = (char)in.read();
    cbuf[1] = (char)in.read();
    cbuf[2] = (char)in.read();
    if (insertField(Integer.parseInt(new String(cbuf)))) continue;
    out.write(c);
    catch (Exception io)
    System.out.println(io.getMessage());
    finally
    try
    in.close();
    out.close();
    catch (Exception ex)
    System.out.println(ex.getMessage());
    private boolean insertField(int d) throws Exception
    int a = d;
    switch(a)
    case 1: doField(currClient.getTitle());//35 - these are integers i was using previously
    return true;
    case 2: doField(currClient.getFirstName());//36
    return true;
    case 3: doField(currClient.getLastName());//91
    return true;
    case 4: doField(currClient.getFirstAddress());//93
    return true;
    etc
    i just have to make sure i have no %s in my standard letters, otherwise i should use some other symbol. i will now worry until i am sure you are not going to point out why this will not work long term, but it seems to have worked so far and has helped expand my armoury of fields..........
    thanks once again for your help
    ant

  • How do I restore my iPhone? It has iPod touch information on it (pictures, keyboard is different - no more special symbols, etc.)

    How do I restore my iPhone? It has iPod touch information on it, like old pictures that I had on my iPod touch (which I don't use anymore), and the keyboard has changed. Before I could use special icons and symbols, and now it's just basic (no shapes or anything). Is there any way to restore my iPhone to the condition that I bought it in? I don't want to have to buy another one, since I just got it.
    I also recently changed my Apple ID and password...could this have anything to do with getting my iPhone messed up?

    Setting up your phone "as new device" is described here: How to set up your iPhone or iPod touch as a new device
    Apps and other media from iTunes can only be used with the iTunes account they were bought with.

  • Don't want to import special symbols

    Hi
    i am using external table to import csv file into table...but when the csv file contain any special symbols, it is not accepting....it gives some unwanted symbol instead of that specified symbol..say name field in csv file contain ë instead of e...but sql is not accepting the character...Can anyone say how to rectify this problem?
    Fazila

    Please try to set system variable NLS_LANG on OS as follows
    and then to execute loading.
    (Windows cmd.exe)
    set NLS_LANG=.US7ASCII
    (Born-Shell and his friends on UNIX/Linux)
    NLS_LANG=.US7ASCII; export NLS_LANG
    (C-Shell and his friends on UNIX/Linux)
    setenv NLS_LANG .US7ASCII

  • Search in file for exact phrase with special symbols [windows 8.1]

    When I search, for example, for 'name.txt' in file content it seems that it finds all files with 'name' and 'txt' in any order.
    Windows 7 seems to have options related to this, like 'use natural language' and 'find partial matches'. But I see nothing in windows 8.
    Please let me know if it's possible to search for exact phrase with special symbols.
    Thanks.

    When I search, for example, for 'name.txt' in file content it seems that it finds all files with 'name' and 'txt' in any order.
    You need to either use the Search tools or learn the Advanced Query Syntax (AQS) that they imply.  Actually you need to do both because the tools only help with the keyword prefix and not with the following syntax that is required to do the specific
    search that you want to do.
    So, for example, you knew that you wanted to find  name.txt  only in file (or directory?) names so you would use the  Other Properties > Name  tool  to be sure that your query had that prefix  Name:name.txt  
    In fact, that was a surprise for me just now because I thought the default syntax for Name with no other specification would be "contains" (which would be Name:~=name.txt) but apparently it defaults to  Name:~<name.txt  which means
    "begins with"  name.txt.  In fact, from an efficiency point of view that is probably a logical default.  But from a usability point of view it is terrible because it means that when users really want  Name:name.txt  to mean either
    "contains" or "ends with" they won't have a clue what to do to make those differences.
    Ref:
    http://windows.microsoft.com/en-us/windows7/Advanced-tips-for-searching-in-Windows
    FYI
    Robert Aldwinckle

  • Can I move the common library or use a symbolic link so that Dropbox can sync it?

    A team of us are now using Fireworks for interaction design, and need to synchronise the common library so that the elements we use are up to date.
    1.  Is the common library the correct method? 
    2. we use dropbox, and I don't think I can tell dropbox to synchronise just the common library folder (as an isolated path from the rest of the dropbox tree...) - so, is there a trick using a symbolic link we could use so that dropbox thinks the common library is actually in it's own tree?  (OSX is BSD afterall...)
    We're on Mac OSX 10.7.X, running FW CS6 and using the latest dropbox for Mac.
    I look forward to hearing some ideas.  The question of teams using fireworks has been raised several times since 2009, and Adobe still hasn't got a solution.  The mind boggles as to whether or not Adobe takes Fireworks seriously - I hope they do...
    All the best,
    Dylan

    Thanks groove25.
    I did find that it is possible to use symbolic links and Dropbox to synchronise the common library across computers.  It does come with its idiosynchrasies though (excuse thepun).
    I'm going to have a go with what this thread recommends:
    http://hints.macworld.com/article.php?story=20120803093247391
    and leichter's explanation and walkthrough (nested in the thread) looks very helpful:
    There's a subtle point that, once you understand it, makes symlinks much more useful in Dropbox.
    The whole design of symlinks in Unix tries to make them invisible to programs that don't specifically try to manipulate them. So suppose 'sym' is a symlink to 'file'. If a program opens 'sym' for read, it actually gets the data in 'file'. If it appends to 'sym', it actually appends to 'file'. However, if it deletes 'sym', what disappears is the link 'sym', not the file 'file'. Opening 'sym' for writing as a new file - not appending to it - is equivalent to deleting the old file and creating a new one: It leaves 'file' unchanged and creates an entirely new file named 'sym' which no longer has any connection with 'file'.
    A link to a directory follows the same rules. Looking a file up using the symlink as the name really searches the linked-to directory. Creating a file through the symlink is like appending: It creates the entry in the linked directory. And so on.
    A program that wishes to do something special - like change where a symlink points - has to be aware that it's dealing with a symlink and use special OS calls for that exact purpose.
    Dropbox works with symlinks *but it doesn't do anything special with them*. So suppose you put that 'sym' linked to 'file' in your Dropbox directory. Dropbox comes along, finds a new file, and sends it to its servers. What does it send? Well, first the name 'sym', and then the "contents" - i.e., what it gets from reading 'sym' which is exactly the contents of 'file'. On the server, and then later on other clients, what you will find is a normal file named 'sym' with the contents of 'file'. *There is no connection with a file named 'file'.* If you change 'file' on the system where 'sym' links to it, the changes propagate. If you change it anywhere else, the changes propagate back - but Dropbox doesn't modify files in place, it writes entire new ones. So the effect back on the original system is to break the link and write a new file named 'sym' with the latest contents - but no connection to 'file'.
    I know of no way to keep a link to a *file* as a symlink across updates. But the story is different for *directories*. Unlike ordinary files, directories are normally updated in place (unless you explicit delete and recreate them). So you can do the following:
    1. Create directory 'dir' anywhere you like.
    2. Create symlink 'dirlink' pointing to 'dir' in your Dropbox folder.
    3. Wait for 'dirlink' to appear on all other clients. It will appear as an ordinary directory, not as a symlink. If the original 'dir' had files in it, those will now appear as files on the clients, too.
    4. On each client, rename 'dirlink' to 'dir' *in the place you want it to appear in your directory tree*. (Renaming only works if you are staying not the same device. Otherwise, you need to create 'dir' and move all the files.) This need not be the same on all clients, though it's easier to keep track of if it is.
    5. On each client, create symlink 'dirlink' pointing to 'dir'.
    Now you have a 'dirlink' on each client, which will to Dropbox look like a subdirectory - and it will sync all the files in that "subdirectory". Changes made on any client to any file in 'dir' aka 'dirlink' will be synced to all the other clients as well. Files created or deleted in 'dir' will be created/deleted on every other client as well.
    It's probably easiest to do all this while there are no files in 'dir'. Otherwise, Dropbox sometimes repeatedly syncs the same files until everything eventually settles down.
    The limitations here:
    - Some platforms (e.g., iOS) don't support symlinks. To them, 'dirlink' will just be an ordinary subdirectory.
    - Any time you add a new client, you have to go through the process for that client. Certain reset operations in Dropbox - anything that requires re-syncing every file in the Dropbox folder on a client - will require the same, because Dropbox doesn't know how to *create* symlinks - it'll just create an ordinary subdirectories.
    I've used this configuration for a couple of years. You have to watch out for the reset situations and such, but generally once you have it set up, it "just works".
    -- Jerry
    All the best,
    Dylan

  • Website symbols in "bookmarks" return to default mode when history cleaned

    Website symbols in "Bookmarks" revert to default mode when I clean History.  Very irritating!

    In Firefox 4 you can press F10 or use "Firefox > Customize" to make the Menu Bar and other toolbars visible and remove the check-mark on "Tabs on Top" to place the tab bar in the old position.
    You only see the orange (on Linux gray) Firefox button if the Menu Bar is hidden (View > Toolbars > Customize or right-click a toolbar).
    If you need to access the hidden Menu bar then press the Alt key or the F10 key to make the Menu Bar appear temporarily.
    See also:
    * [[Menu bar is missing]]

  • Special symbols locked, weird start up screen.

    I have a weird problem with my macbook air. I was browsing the web when i think i hit a wrong keyboard combination. I was trying to select text cmd+a. But a small white window popped up with some text. After that safari started acting weird. Whenever i tried to open a new link it did not simply open the link like usual. But it downloaded it into my download folder. I allso noticed that i could only type special symbols.
    So i tried to reboot my macbook air. Usualy it boots right to the login screen. But now it first shows a startup screen where i can select a bootdevice. So i select macintosh HD and it boots up like normal. But i can still only type weird symbols so i cant login.
    What is the problem? First i thought maybe my alt key is stuck but it works just fine and i did not do anything with it.
    Sorry for my bad English i am from holland.
    please help

    Hi Mautaz,
    I have a similar problem and now I am using an external keyboard to run my Macbook Air.  I simply cannot get out of this.  I noticed nobody helped you out so far.  Did it work?
    Kindly update me as I am in the same mess!

  • Won't let me use the symbols to put my passcode in?

    Will not let me use the symbols to put my passcode in?

    Have you turned off Simple passcode in Settings>General>Passcode Lock? With the default simple passcode on, you only have digits.
    From the Users Guide:
    Turn Simple Passcode on or off:  Choose General > Passcode Lock, then turn Simple
    Passcode on or off.
    A simple passcode is a four-digit number. To increase security, turn off Simple Passcode
    and use a longer passcode with a combination of numbers, letters, punctuation, and
    special characters.

  • Omega in Special Symbols

    Has anyone worked out a way of having Omega (Ohm symbol) in the Special Symbol drop down list? I have followed previous posts where you have it appear as the letter W and then change the font set to Symbol, but was wondering if anyone knew how to eliminate the changing of the font. I use it a lot and am trying to make it more straightforward.
    Thanks in anticipation.
    Stu

    Stuart, I've not seen what you describe (in FM8, Win7) with either Character Map or Paste Special. But I'll speculate:
    * Extra space: If you double-clicked to get the omega in the Characters to copy field, it might be that there was already a space there, which is picked up by the Copy button.
    * Question mark: Almost certainly, that means the font in your style isn't a complete Unicode font. Can you find omega in that font in the Character Map? (I just grabbed it from Tahoma, at random, to paste it into the post above and to test in FM.)
    Should you continue to experience what you describe, I'd become suspicious of the font, Windows language or code page settings, or something similarly esoteric. It doesn't sound like an FM issue.

  • Modify DB by single field using Field Symbol

    Hi,
      please help me ,actually i have not use the field symbol in any object. i have one requirement ,i have to modify the DB by field STATUS using Field symbol ,
    I am sending u my code so please help me how can i modify DB using field symbol..
              gw_msg3_status1   = k_status1 .
              LOOP AT gi_msg3 INTO gs_msg3.
                gs_msg3-status  = gw_msg3_status1 .
                gs_msg3-issue   = lw_issuno.
           MODIFY gi_msg3 FROM gs_msg3 TRANSPORTING status.
                MODIFY gi_msg3 INDEX sy-tabix FROM gs_msg3 TRANSPORTING issue status.
              ENDLOOP.
    Thanks & Regards,
    Meenakshi

    perform dboperation_table using 'SET' 'BIRTHDT' '=' <fs>.
        perform dboperation_table using 'WHERE' 'PARTNER' '='  <fs>
        perform dboperation_update using 'BUT000'.
    form dboperation_table
    using p_type
          p_var1
          p_var2
          p_var3.
      data: t_l type cmst_str_data.
      data: d_cx_root            type ref to cx_root,
            d_text               type string.
      try.
          clear t_l.
          if p_var3 is not initial.
            t_l = p_var3.
            condense t_l.
            concatenate '''' t_l '''' into t_l.
          endif.
          concatenate p_var1 p_var2 t_l into t_l
          separated by space.
          case p_type.
            when 'SET'.   append t_l to g_s_t.
            when 'WHERE'. append t_l to g_w_t.
          endcase.
        catch cx_root into d_cx_root.
          d_text = d_cx_root->get_text( ).
          message a398(00) with  d_text.
      endtry.
    endform.                    "DBOPERATION_table
    form dboperation_update
    using  p_tabname type zdboperation-tabname.
      data: tabname type bus_table.
      data: d_cx_root            type ref to cx_root,
            d_text               type string.
      try.
          tabname-tabname = p_tabname.
          call function 'ZDBOPERATION_UPDATE'
            in update task
            exporting
              tabname     = tabname
            tables
              where_table = g_w_t
              set_table   = g_s_t.
        catch cx_root into d_cx_root.
          d_text = d_cx_root->get_text( ).
          message a398(00) with  d_text.
      endtry.
    endform.                    "DBOPERATION_update
    Hope it will help you.
    Regards,
    Madan.

  • REPORT S_ALR_87013558 - NOT ABLE TO USE SPECIAL CHAR(*,+) IN PROJECT DEF

    Hi to all,
    when using standard report S_ALR_87013558 , i don't manage to use special characters such as * or + . Do i need to apply a note or set something in customizing?
    Thanks for your help.
    Ciao, Carlo

    Hi Carlo,
    The customizing for using special characters is found in OPSK tcode. It is called "Define Special Characters for Project".
    Ciao,
    Dave

  • Error while using Special GL indicator H for Customer Down Payment

    Dear Friends,
    I have configured the Special GL Indicator H (Security Deposit) for Customer Down Payment received. I also make the necessary settings in OBXY for assignment of Special GL against the reconciliation account.
    When I am doing the Customer Down Payment entry through F-29 using special GL indicator H system giing me the following error message
    Special G/L indicator H is not defined for down payments
    Message no. F5053
    Diagnosis
    The specified special G/L indicator is not classified as "down payment" or not listed in the list of the target special G/L indicators for indicator "F".
    System Response
    The entry is not accepted.
    Procedure
    Enter an allowed special G/L indicator or initiate a change of the default settings
    I also check the configuration again but still systems is giving me the same above error.
    Kinldy give me the solution or way of doing this ASAP because I am working in an implementation Prj.
    Regards,
    Sandeep

    Dear Surya,
    I have made the necessary changes in Special GL Indicator F in their properties I assign target spl GL indicator H but while in spl GL indicator H when I assign target spl GL indicator F system gives me following error
    Delete target special G/L indicator
    Message no. F4137
    Diagnosis
    In the SAP system, you can only use "Target special G/L indicators" with "Down payment/down payment request" when "Noted item" is also selected at the same time. These requirements are not fulfilled in the special G/L indicator "H".
    Procedure
    Delete the specified target special G/L indicator.
    Effects on Customizing
    You can define when this system message is to be issued in accordance with your requirements.
    You do this in Customizing as follows: Cross-Application Components -> Bank Directory -> Change Message Control.
    The application area and message number can be taken from the technical documentation.
    Thanks,
    Sandeep

Maybe you are looking for

  • Excel Pivot (molap) will not refresh from an SSAS box that is not part of the Farm

    I have spent hours trying to get this working going through many links.  One of the best ones is this. http://whitepages.unlimitedviz.com/2010/12/connecting-to-cubes-and-external-data-with-excel-in-sharepoint/ However even after doing all of this it

  • Huge increase in saturation onupgrade to LR3

    I have searched the forums and other sites to see if anyone else has this prob lem on upgrading from LR2 to LR3, but I cannot find anything similar. I have upgraded to LR3 but in doing so ALL of my Library (Photos) have seen a huge increase in Satura

  • Backup without sync

    Ok, so my in-laws rely on me for tech support, and this time they are really challenging my ability to solve the problem. Mom has an iPad 1, which cannot update to iOS6, and thus cannot be updated any more without breaking the apps on her device. Dad

  • Strange error message when building dvd

    Hi I have a dvd project, at about 80% progress of the build, I get the following error Has anyone got any idea what this may be. Many thanks Chris Anderson

  • User Feedback

    My suggestion is to redesign the iPod Classic to include iOS because it will open a large pool of apps for the users to enjoy and increase the functionality of the iPod while maintaining the legendary style of the iPod Classic.