Typing british pound sterling currence symbol on MacBookPro purchased in US

I purchased my MacBookPro in the US and I am now in england and want to type a pricing sheet with prices in british pounds sterling. But, so far, I have not been able to figure out how. Can anyone help me?
Thanks
Pove

You can change your 'input' source temporarily or permanently in the system preferences > International tab.
Under Formats choose your Region for the current area and documents and that will provide correct time, date and currency and numbering.
Under Input Menu, you can choose to keep the various input sources that you want to use in the menu bar for easy switching.
Also, the Input Menu allows you to set the menu bar item to show various input sources that you want as options for your data and documents as well as showing the "Keyboard Viewer" and Character Palette.
You can choose to allow different input sources for each document or one input source for all.
You can use keyboard shortcuts to choose input or you can choose from the dropdown menu which is then set in the menubar.
Check out the International tab options; they provide great customisation of your system.

Similar Messages

  • British Pound Sterling with UTF-8 and ISO-8859-15

    Please excuse my long-windedness ... I'm simply trying to answer all possible questions up front and give the most possible information. I've searched through tons of forums and all over various sites and references and am not able to come up with a concrete solution to this. I'd appreciate any help anyone has.
    I'm having some trouble with character sets and international currencies.
    Our server was recently upgraded from Red Hat 7.3 to Red Hat 8.0. I understand that the default system encoding thus changed from ISO-8859-15 to UTF-8. I have verified this by executing the following:
    public class WhichEncoding {
      public static void main(String args[])
        String p = System.getProperty("file.encoding");
        System.out.println(p);
    }I have two machines, one which represents the old system (7.3) and one representing the new (8.0), which I will call machine73 and machine80 respectively.
    [machine73:~]# java WhichEncoding
    ISO-8859-15
    [machine80:~]# java WhichEncoding
    UTF-8I have also verified that the JVM is using the correct default character set by executing the following:
    import java.io.ByteArrayOutputStream;
    import java.io.OutputStreamWriter;
    public class WhichCharset {
        public static void main (String[] args) {
            String foo = (String)(new OutputStreamWriter(new ByteArrayOutputStream())).getEncoding();
            System.out.println(foo);
    }which yields:
    [machine73:~]# java WhichCharset
    ISO-8859-15
    [machine80:~]# java WhichCharset
    UTF8Here comes the problem. I have the following piece of code:
    import java.text.NumberFormat;
    import java.util.Locale;
    public class TestPoundSterling
        public static void main (String[] args)
            NumberFormat nf = NumberFormat.getCurrencyInstance(new Locale("en", "GB"));
            System.out.println(nf.format(1.23));
    }When I compile and execute this, I see mixed results. On machine73, I see what I would expect to see, the British Pound Sterling followed by 1.23. To be sure, I outputted the results to a file which I viewed in a hex editor, and observed [A3 31 2E 32 33 0A], which seems to be correct.
    However, when I execute it on machine80, I see a capital A with a circumflex (carat) preceding the British Pound Sterling and the 1.23. The hex editor shows [C2 A3 31 2E 32 33 0A].
    I looked up these hexadecimal values:
    Extended ASCII
    0xC2 = "T symbol"
    0xA3 = lowercase "u" with grave
    ISO-8859-1
    0xC2 = Capital "A" with circumflex (carat)
    0xA3 = British Pound Sterling
    Unicode Latin-1
    0x00C2 = Capital "A" with circumflex (carat)
    0x00A3 = British Pound Sterling
    (This explains why, when I remove /bin/unicode_start and reboot, I see a "T symbol" and "u" with a grave in place of what I saw before ... probably an irrelevant sidenote).
    I found a possible answer on http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 under the Examples section. Apparently, a conversion between Unicode and UTF-8 acts differently based on the original Unicode value. Since the Pound Sterling falls between U-00000080 � U-000007FF (using the chart on the mentioned site), the conversion would be (as far as I can tell):
    U-000000A3 = 11000010 10101001 = 0xC2 0xA3
    This appears to be where the extra 0xC2 pops up.
    Finally, to the whole point of this: How can I fix this so that things work as they should on machine80 like they did on machine73. All I want to see at the command line is the Pound Sterling. Getting the 0xC2 preceding the Pound Sterling causes some parts of my applications to fail.
    Here's some additional information that might be of use:
    [machine73:~]# cat /etc/sysconfig/i18n
    LANG="en_US.iso885915"
    SUPPORTED="en_US.iso885915:en_US:en"
    SYSFONT="lat0-sun16"
    SYSFONTACM="iso15"
    [machine73:~]# echo $LANG
    en_US.iso885915
    [machine80:~]# cat /etc/sysconfig/i18n
    LANG="en_US.UTF-8"
    SUPPORTED="en_US.UTF-8:en_US:en"
    SYSFONT="latarcyrheb-sun16"
    [machine80:~]# echo $LANG
    en_US.UTF-8Any help is very, very much appreciated. Thanks.

    you didn't look hard enough, this is a faq...
    there three options:
    1) change the system encoding by setting LANG or LC_CTYPE environment variables... assuming you use bash:bash$ export LC_CTYPE=en_GB.iso88591 you can check the available locales with locale -a ... pipe it to grep en_GB to filter out the non-british english locales
    -OR-
    2) change the java default encoding from the command line with -Dfile.encoding... run with$ java -Dfile.encoding=ISO-8859-1 yourclass-OR-
    3) set the encoding from within the program with OutputStreamWriter, or use a PrintStream that has the encoding set..PrintStream out = new PrintStream(new FileOutputStream(FileDescriptor.out), true, "ISO-8859-1");
    System.setOut(out);see also the internationalization tutorial & the javadoc of the related classes....

  • I have been give a british pound sterling gift card, and want to use it in the US.  How do I do this?

    I have been give a british pound sterling gift card, and want to use it in the US.  How do I do this?

    Sorry... but...  iTunes Gift Cards are only Valid in Country of issue.

  • Currency Symbol (�) not displaying

    Hi,
    I'm using PostgreSQL as my DB and the pg73jdbc3.jar driver to connect to my DB. I'm trying to display the pound sterling currency symbol (�) in my JTable but it will not display, it puts in a square instead. However, it will display the U.S. dollar symbol ($). The locale settings on the PostgreSQL server are set to en_GB.
    What do I need to do to get the � symbol to display in my JTable.
    Kind Regards,
    Chris

    This has to do with JDBC and databases because I am querying a postgresql database (version 7.3.2) and the .getString() value from the resultset is giving me a square symbol rather than the pound sterling symbol.
    I've tried modifying the font, the locale settings, and the character set used by the JDBC driver but neither of these have worked.
    Anyone got any suggestions?
    Kind Regards,
    Chris

  • Help!, How do you enter British Pound/Euro symbols?

    Hi,
    I bought an american version powerbook because as an fairly apple newbie turn intermediate level mac user each key was well spelt out in words than the rather symbolic based british keyboard layout. Now funny question is does anyone know how to enter British pound and Euro symbols on an american version powerbook, cos i dont want to be copying and pasting

    £ is Option + 3
    € is Shift + Option + 2
    Also, consult Keyboard Viewer for the key commands for other commonly used characters. You can find Keyboard Viewer by clicking on the flag icon in the menu bar. To activate this menu bar item, go to System Preferences > International > Input Menu and check the box, 'Show input menu in menu bar,'
    Tuttle

  • Pound (currency) symbol, and Euro symbol on invoice template.

    Hi - I have written an invoice using one of the pages templates. I changed the Euro symbol (€) to a pound symbol (£) but every time it is automatically changed back to pound symbol again. Having entered the pound symbol. how can I make it stay there?

    Hi there - Thanks, but I've got it sorted - I had to select a cell within the invoice template, then click on Table Inspector, then format, then currency, then select currency. I would prefer to just delete the currency symbols with the mouse, and then put in the ones I want, but I know how to do it now. Maybe Britain should just join the Euro - or maybe not?

  • How to get pound sterling symbol on spanish keyboard?

    how to get pound sterling symbol on spanish keyboard?

    Depends which Spanish layout;
    Spanish - alt + 9 (alt is opt or ⌥ on some keyboards).
    Spanish ISO - shift + alt + 4.
    You can find all these using keyboard viewer;
    System Preferences > Language and Text > Input Sources tab. Top of the left column, tick (check) "Keyboard and Character Viewer", Bottom of window next to search field, tick "Show input menu in menu bar"
    System Preferences > Keyboard > Keyboard tab; tick "show keyboard and character viewers in menu bar"
    Hold down the alt key and the alternative symbols and diacritics will be shown. Shift + alt shows more.
    The input sources menu in Language and text allows you to select  whatever keyboard you want.
    Message was edited by: noondaywitch

  • GB Pound sterling symbol £ importing from script

    Apex v3.1.2.00.02
    I am migrating a large application to a new network.
    I exported the original app from the old network as Unicode UTF-8 character set. I have since completed a lot of development work on the app on the new network for hardening purposes.
    My problem comes now when I try to export the app from the new network (for transport to test and live environments). The app has a large number of "£" (GB pound sterling) signs hard coded into column headers and text.
    When I export the application, all the £ signs change to £
    I'm thinking this is a character set issue, but I don't get an option to change the character set on export... it is set to Unicode UTF-8.
    I tried a find and replace in the exported source code (which I know is unsupported), but that ended up producing another funny character (a diamond with a ? in the middle of it) instead of the £ symbol.
    Does anyone know how to fix this?
    Thanks in advance,
    Gus..

    Hi Joel...
    You are right, it isn't fixed...
    in our new system, we have in our F:\oracle\product\10gAS\10g_MT\Apache\modplsql\conf\marvel.conf file... (xxx's are blanked out data)
    <Location /xxxx>
        Order deny,allow
        PlsqlDocumentPath docs
        AllowOverride None
        PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
        PlsqlDatabaseConnectString APEX_xxxxxxxx
        PlsqlNLSLanguage AMERICAN_AMERICA.AL32UTF8
        PlsqlAuthenticationMode Basic
        SetHandler pls_handler
        PlsqlDocumentTablename wwv_flow_file_objects$
        PlsqlDatabaseUsername APEX_PUBLIC_USER
        PlsqlDefaultPage apex
        PlsqlDatabasePassword xxxxxxxxxx
        Allow from all
    </Location>From my tests, if I export from the Apex application Import/Export button, (exporting as DOS) I get the funny character in the export file.
    If I import that application back in using the Apex application Import/Export button, I have no problem, the characters are interpreted correctly.
    If I import the application using our automated migration script (below), the characters are NOT interpreted correctly, we get £ instead of £shown in the Apex development environment and on the running application.
    migration .bat file runningsqlplus / as sysdba @"SQL Scripts\110_CREATE_APEX_COMPONENTS" !WSPwd!110_CREATE_APEX_COMPONENTS.sql is....WHENEVER sqlerror EXIT
    SET serveroutput ON
    SET define '^'
    SET sqlprefix OFF
    SET VERIFY OFF
    SPOOL Logs\LOG_CREATE_APEX_COMPONENTS.log
    ALTER SESSION SET CURRENT_SCHEMA=FLOWS_030100;
    begin
        wwv_flow_api.set_security_group_id(p_security_group_id=>xxxx);
    end;
    prompt  Creating workspace ATSYS...
    begin
    wwv_flow_fnd_user_api.create_company (
      p_id                      => xx...,
      p_provisioning_company_id => xxxx,
      p_short_name              => 'ATxxx',
      p_first_schema_provisioned=> 'ATxxx',
      p_company_schemas         => 'ATxxx',
      p_expire_fnd_user_accounts=> '',
      p_account_lifetime_days=> '',
      p_fnd_user_max_login_failures=> '');
    end;
    prompt  Creating Groups...
    prompt  Creating Users...
    begin
    wwv_flow_fnd_user_api.create_fnd_user (
      p_user_id      => 'xxxx',
      p_user_name    => 'ATxxx_ADMIN',
      p_first_name   => '',
      p_last_name    => '',
      p_description  => '',
      p_email_address=> 'admin@xxxxxx',
      p_web_password => '^1',
      p_web_password_format => 'CLEAR_TEXT',
      p_group_ids    => '',
      p_developer_privs=> 'ADMIN:CREATE:DATA_LOADER:EDIT:HELP:MONITOR:SQL',
      p_default_schema=> 'ATxxx',
      p_account_locked=> 'Y',
      p_account_expiry=> to_date('200806130000','YYYYMMDDHH24MI'),
      p_failed_access_attempts=> 4,
      p_change_password_on_first_use=> 'N',
      p_first_password_use_occurred=> 'Y',
      p_allow_access_to_schemas => '');
    end;
    @"Code\APEX Exports\ATxxx Application"
    COMMIT;
    SET VERIFY ON
    SPOOL OFF
    EXITwhere 'ATxxx Application.sql' is the exported application using the Apex application Import/Export button.
    It does look like this issue...
    Re: Apex export error on 'special' characters (ie. ë and ©)
    but in a windows environment...
    Is there something I need to add to my script to make it work like stefan did?
    Thanks,
    Gus..

  • How can I -change the currency symbol from Pounds to Euros in a spreadsheet?

    How can I change the currency symbol from Pounds to Euros in a spreadsheet?

    Assuming davyfromGib is asking about AppleWorks rather than Pages . . .
    If running AW under OS X, System Preferences settings allow you to use the euro rather than pound sign in AW's currency-formatted cells:
    System Preferences > Language & Text > Formats > Currency (set to Euro)
    AW respects this setting in choosing how to display currency format.
    But do note that if you later change the System Preferences back to pounds, the currency-formatted cells in the AW spreadsheet will also change to pounds.

  • Format a cell / british pound

    Hello Community,
    I'm using Numbers '09 V2.3 (german) and I'm writing an invoice in £ to a british company. I can set the currency to Sterling, but I can't force the numbers to be written the british way. In german writing you use only a "," where in british the "." is used. The british "," for displaying the thousands doesn't excist in german writing. (Do you get what I mean??)
    So I want to make a default format for a cell in british pounds with british writing (e.g.: £1,000.00) that can be used with a german Numbers.
    Switching the keyboard language to English doesn't help.
    Anybody an idea??
    Thanks in advance,
    musicus

    The only way I can come up with to allow you to maintain your native localization is to add a column that switches the decimal separator like this:
    you can add the current symbol in front as well.  To do this you can change the formula from :
    B1=INT(A1)&","&INT(100×(A1−INT(A1)))
    to
    B1="£"&INT(A1)&","&INT(100×(A1−INT(A1)))
    then you can hide the "other" column (in this case column A)

  • Euro Currency Symbol Displayed?

    I am trying to show the Euro currency symbol in a calculated number field.
    I tried changing the locale to English (United Kingdeom - EURO). That still displays the british pound symbol.
    Any ideas?

    There is a UK Euro option in LiveCycle though. Our office does sell in Euros instead of GBP sometimes.
    But what is wierd is when I use Germany or france, to show less than one Euro, it is using a comma instead of a decimal point. That is not how it is shown in our business. For example we would do.
    5.32 but LiveCycle is showing it as 5,32
    frustrating. Even though in the display pattern I have $z,zz9.99

  • Currency symbol - default

    Hi there,
    I have installed iWork 09 and am using the inbuilt templates. The default monetary symbol is the UK Pound Sterling sign (GBP). If I cut and paste a Euro symbol into the 'cell', once I leave it, the Euro symbol disappears and is replaced by the default GBP symbol. Is there any way to either stop this from happening or telling the system that I want to us another currency symbol?
    Thank you for your help.

    Select the cell/s > Inspector > Table > Format > Cell Format > Currency > Symbol: Euro
    Peter

  • Lion refuses to set to Cdn $ - only sets to British pounds. How to fix?

    I cannot see to get my mac pro to set preferences to Cdn $. whenever I try it automatically shows British pounds. How do I fix this?

    I'm not sure what web sites you're trying to use, but that setting won't have any effect on what an email says. If the sender typed the British pound symbol, that's what you'll see. No setting on your Mac will convert a figure in an email from pounds to Canadian dollars.
    But perhaps I'm not understanding what you mean.

  • PDFs using BI publisher and special characters - pound sterling

    I have a table with character strings which include the £ pound sterling sign.
    If I create an xml file from the table using the escape sequence for the pound sign & # 163; and load it into BI publisher, the pdf renders correctly using an rtf template.
    If I include the pound sign in the rtf template itself the pdf renders correctly and if I use a report query in Apex based on the table, and an rtf template then the pdf renders correctly.
    However there is a limit to the number of columns that can be sent to BI via the report query - we have found this to be 119 columns. For more than this we have been using a stored function to return xml data as a clob and use the clob to generate the pdf with the rtf report layout (using get_print_document). This method works fine but the pound sign is not rendered correctly (appears as "?").
    The NLS_LANG is set to english_united kingdom in the database and in BI publisher. The locale in bi publisher is en_GB. BI will create the pdf correctly with the pound sign if using a standard xml file (with escape seq for pound) so I am sure it is not a language issue in BI/Apex.
    Any ampersands in the xml cause the pdf to fail completely and we cannot represent special characters with a sequence containing the ampersand for this reason. I have tried "& # 163;" and "& amp;#163;" and variations and have also tried using CDATA, none of which gives the correct pdf output. I have also tried to switch the encoding to Windows-1252 or ISO-8859-1 in the header of the xml (xml generated by stored procedure so can control this), but this gives incorrect results too.
    We also need to send other special characters to BI via get_print_document and apex (bullet points, ampersands, dashes ) but cannot use the escape sequences because of the ampersand problem.
    Has anyone had any success with this?
    Is there any plan ( for a future version of Apex) to increase the number of columns that can be used in report query using Apex/BI publisher?
    Thanks
    Kathryn

    Hi Kathryn
    I've had exactly the same problem as you've mentioned.
    Firstly, I've also found that I cannot select more than 119 columns from a view using a report query and have opted to the use the stored function to return the xml (same as you).
    After conducting a lot of searching and experimenting i've found that you can use the following escape characters in REPLACE in your stored function:-
    '£' can be replaced with CHR(194)||CHR(163)
    '%' can be replaced with '%25'
    '&' can be replaced with '%26amp;'
    I found the above escape characters from the xml file or by opening the xml file in Wordpad. Therefore I'm sure you'll be able to find the escape characters for the other symbols that you mentioned i.e. bullet points, dashes etc.
    I hope this has helped. Good luck and let me know if you get any developments with the limitation on the number of columns that can be selected from a report query as this would save a lot of trouble (as I'm sure you're aware).
    Thanks
    Natalie

  • How  can i print currency symbol in smart form?

    how  can i print currency symbol in smart form?
    i want to print the currency symbol with grant total based on the vendor currency.
    pls hepl............

    Hi,
    think You can't print the symbols for currency like $ and Pound etc
    see this doc if needed
    A variable in SAPscript is called a symbol. There are the following types.
    • System symbol (e.g. the number of the current page)
    • Standard symbol (usable in any document)
    • Program symbol (value from the print program)
    • Text symbol (“local variable”)
    The value of a symbol is text for using within SAPscript code and is represented by the symbol-name enclosed by ampersands. On seeing the tell-tale ampersands in SAPscript code, you sometimes need to figure out the symbol type.
    goto any PAGEWINDOW's Text elements in Script (SE71)
    from the Menu-> INSERT-> Symbols
    you find all symbols here
    System symbols
    System symbols in a SAPscript form are comparable to system fields like SY-UZEIT in an ABAP program, and include these. The graphical editor offers three types of system symbol.
    1. General system symbols
    See the table TTSXY. PAGE is the most widely used. The list given in our BC460 training manuals is out of date.
    2. SAPscript system symbols
    See the dictionary structure SAPSCRIPT. SAPSCRIPT-FORMPAGES is the most widely used.
    3. ABAP system symbols
    For the ABAP system field SY-UNAME, say, the symbol is SYST-UNAME. http://SYST is the dictionary structure for ABAP system fields.
    Sample code:
    User: &SYST-UNAME&
    Page &PAGE& of &SAPSCRIPT-FORMPAGES(C3)&
    Standard symbols
    Standard symbols are maintained centrally (in the table TTDTG via transaction SE75) for use in any document. Menu path:
    Tools
    Form Printout
    Administration
    Settings
    Some standard symbols are SAP-standard and others are custom. Curiously, table TTDTG is cross-client although SAPscript forms are not.
    The value of a standard symbol has to be defined for each language used. This gives a way to make a single SAPscript form multi-lingual.
    We can take advantage to an extent of the central maintenance, though there is no guarantee that the available standard symbols will used in every appropriate context.
    Standard symbols complicate searching a SAPscript form, since text like ‘Charity registration 211581’ may be hiding in a standard symbol.
    Text symbols
    A text symbol is declared and assigned to within the SAPscript code, and so obviously applies only to the current document. The command DEFINE is used, requiring /: in the tag column, as in the following examples.
    /: DEFINE &COMP_NAME& = ‘University of Warwick’
    /: DEFINE &WS_RATE& = &TAX_SUMM_C&
    Reward points for useful Answers
    Regards
    Shiva Kumar

Maybe you are looking for

  • Can you have 2 seperate email addresses with one apple account

    My family has had one apple account forever.  My wife just changed her email address to an @icloud.com Can her address or account be linked to my longstanding apple account?

  • Burn fails: "The device failed to respond properly, unable to recover or.."

    Hi all, Whenever I try to burn a disc with iTunes (I'm backing up my whole library), I get this error: "The device failed to respond properly, unable to recover or retry." I'm using MBP and the SuperDrive is Matshushuita UJ-857D. Anyone know what's g

  • Reports with all functionality (sorting,total,subtotal,download)

    Hi, We require that all the actions which we can perform on the Reports available in SAP environment should also be available in the EP Platform. Eg        sorting,total,subtotal,download. Thanks.

  • Error message 0xc000001d in Photoshop CS5 Trial

    I have installed the Photoshop CS5 Trial, and when I tried to initiate the program, I got a error message 0xc000001d. Do you have any idea, if this failure occurs due my operating system use a athlon XP processor 2.4GHz? Are there any solution for th

  • Bid Invitation confirmation Text

    Hi, I am working on SRM 5.0 I got a problem at bid invitation approvals for Non-Catalog items. Once Non-Catalog SC approves by all approvers then buyer is going to add the bidders. After adding the bidders it is going for approval to concerned approv