Questions tagged [euro]

The euro (symbol: €) is the currency used by the Institutions of the European Union and is the official currency of the eurozone. Tag euro can be used for programming questions related to euro symbol € and its container character set

Wiki:

The euro (symbol: €) is the currency used by the Institutions of the Economic and Monetary Union of the European Union and is the official currency of the eurozone.

Entry methods:

In Unicode Sign Euro is encoded at U+20AC.
In HTML Euro sign is written as € or € whiche renders as €.

Generating the euro sign using a computer depends on the operating system and national conventions. Depending on keyboard layout and the operating system, the symbol can be entered as:

AltGr + 4 (UK)

AltGr + 5 (US)

Ctrl + Alt + 4 (UK)

Ctrl + Alt + 5 (US)

Ctrl + Alt + e in in United States layout

Alt + 0128 in Microsoft

Usage:

Tag can be used for programming questions related to euro symbol and its character set. Questions on Stackoverflow are supposed to be related to programming, please avoid currency trading based questions.

Read more:

  1. http://en.wikipedia.org/wiki/Euro_sign
  2. http://en.wikipedia.org/wiki/Euro
95 questions
1
vote
0 answers

Rendering the Euro Symbol in Google Charts

Google Charts has a dichotomy between formatters in the data table and in the views. I have successfully formatted my data table to have a Euro Symbol, but it does not render the same in the views. In the table, I can use NumberFormatter and…
Adam
  • 11
  • 3
1
vote
2 answers

replace eurosign in json

Can anyone help me with this one I have this query and only after adding the last one wich is indexed against the euro I get invalid json. $url = 'http://www.google.com/finance/info?client=ig&q=goog,yhoo,AMS:TOM2'; $response=…
Richard
  • 4,516
  • 11
  • 60
  • 87
1
vote
1 answer

How to fix Euro/€ Symbole in TCPDF?

How to fix the Euro symbole within the "cell" function in TCPDF? "¤/" <--- This is what we get $this->Cell(0, $this->rowHeight(), $data, 0, 1, 'L');
Ichvan Ibragimov
  • 157
  • 2
  • 3
  • 10
1
vote
4 answers

Can we submit euro sign € in html form?

I'm trying to submit '€' (typed on input type=text) but I'm receiving "â?¬" instead. Do we have any solution for this to make me receive correct '€' symbol?
Atthapon Junpun-eak
  • 540
  • 2
  • 11
  • 23
1
vote
1 answer

Using in_array with currency symbol?

I'm working on a PHP file which can echo a price (given by an array from another website) converted in a certain currency (let's say in € for example). I thought about using the in_array function to check if the price retreived from the other…
Speed
  • 21
  • 1
  • 2
1
vote
2 answers

rawurldecode does not decode euro sign

I'm getting a textarea value with jQuery and using ajax to post it to the server. I'm using escape(textarea.val()) to encode the URL in jQuery. In my PHP script, I'm using rawurldecode to convert it back. This works for every character on my…
bur
  • 604
  • 5
  • 20
1
vote
1 answer

Android - Fixing European Currency Input which Uses Commas instead of Decimals

Firstly, I know Doubles aren't the best for currency, but in this case, precision is not profoundly important. So, I have a live app in the Play store and I found a problem with Euro currencies. For some reason, if a Euro localization is used (can't…
AutoM8R
  • 3,020
  • 3
  • 32
  • 52
1
vote
3 answers

writing an xml file that contains a euro symbol (€) in Python using xml.etree

I am trying to use xml.etree to read and write xml files containing a € symbol. My simplified code looks like this: optionsdirectory = os.getcwd() optionsfile = os.path.join(optionsdirectory, "conf") optionstree = ET.parse(optionsfile) options =…
jake
  • 11
  • 1
  • 2
1
vote
0 answers

Web scraping: How do I handle euro signs?

So I'm trying to scrape prices of a product on a website, and their HTML looks like this:
€12.99
Now I've wrote a xpath query that gets price, and it returns a string like this: € 12.99. If possible, I would like…
user1333327
  • 795
  • 1
  • 6
  • 11
1
vote
1 answer

Displaying Euro Symbol with JSTL

I have text in a mysql database which is correctly holding the Euro symbol. What I am trying to do is create an array entry in javascript that will be used to populate a text area when a user selects an option from a drop down. Currently what I have…
sparkdoo
  • 522
  • 1
  • 5
  • 13
0
votes
2 answers

xmlHttpRequest displays eurosign as questionmark

I use this script (from dynamicdrive) to dynamically fill div with id: var bustcachevar=1 //bust potential caching of external pages after initial request? (1=yes, 0=no) var loadedobjects="" var…
C-TZ
  • 659
  • 1
  • 5
  • 15
0
votes
1 answer

PowerShell Get-Content do not display currency symbol euro (€), pound (£)

I read a csv file that contains currency symbol : us dollar ($), british pound (£) and euro (€). Here a short extract: 337;European €;NULL; 426;British £;NULL; 337;Americain $;NULL; I use a powershell command to replace the "NULL" literal string in…
VyTre
  • 103
  • 3
  • 14
0
votes
0 answers

R Shiny - "€" Euro symbol not rendering in Shiny plots

I am attempting to label each of my data points in a Shiny App Plot with a € symbol and value. I have succesfully created this plot using R, with the "€" sign appearing for each point 1 but when I try to render it in a shiny app, the "€" turns to…
0
votes
1 answer

Eclipse STS console fails to display some UTF-8 chars

I am using Spring Tool Suite v4.13.1, a customisation of Eclipse 3.18. I have the following code: NumberFormat fChina = NumberFormat.getCurrencyInstance(Locale.SIMPLIFIED_CHINESE); NumberFormat fFrance =…
quiet-ranger
  • 489
  • 1
  • 4
  • 12
0
votes
3 answers

Is there any API to format currency values in java?

I have currency code and value in double. Need to do formating for Currencies.I tried with NumberFormat and Locale but in this case for example EURO has different Locale related to countries. How can I achieve this?, Is there any common format for…
DAK
  • 282
  • 1
  • 18