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
1 answer

How to print euro sign from c console app using gnome terminal

I am trying to print the euro sign on the console in the Gnome Terminal app through a c console application. My code is: #include #include #include #include int main (int argc, char* argv[]) { …
clearcom0
  • 159
  • 3
  • 11
1
vote
2 answers

How to remove currency amounts from a list? ["9.358,26 €", "Hello World", "3.562,77 €", "3,77 €"] -> ["Hello World"]

["9.358,26 €", "Hello World", "3.562,77 €", "3,77 €"] -> ["Hello World"] I was thinking of using regex, but is there a more easy way?
1
vote
2 answers

Can't find where is the Euro symbol set in Magento 1.3.2.3

Weird but I can't find where is € symbol set in Magento 1.3.2.3. My locale is German, so I checked /lib/Zend/Locale/Data/de.xml, but for Euro it only have the following code: Euro
user487772
  • 8,800
  • 5
  • 47
  • 72
1
vote
1 answer

Why when I format with Intl.NumberFormat to euro, the whitespace between the last digit and the € is not the same as the spacebar?

I'm wondering why the currency formatter for euro uses a different whitespace than the normal space produced when pressing the spacebar. Here is a code example showing that comparing strings becomes complicated, specially when I try to do tests the…
guitartsword
  • 62
  • 1
  • 8
1
vote
2 answers

Euro sign (€) is rendered as Û, only on iPhone

I stumbled upon this very weird issue: I have a plain HTML-document (having and in the head) containing a price list in Euro, thus showing prices with a Euro sign (€). No rocket science involved. The page looks…
neoMagic
  • 420
  • 4
  • 9
1
vote
1 answer

adding €-sign in valueBox() in RShiny

My valueBox() in the server is generated as: valueBox(winterMean, subtitle = "Mean Winter Performance", color = "black") What I want to have the subtitle Mean Winter Performance € / MWh, but unfortunately I don't know how to add the €-sign. The…
MikiK
  • 398
  • 6
  • 19
1
vote
1 answer

Embedding a font that supports the Euro symbol

I'm building a Flash ad that uses the Neo Sans font, the text that is shows contains the Euro symbol, but I can get the Euro symbol to show. This is how I'm embedding the font: [Embed(source='C:/WINDOWS/Fonts/NeoSans Medium.otf',…
StephenAdams
  • 521
  • 2
  • 9
  • 26
1
vote
1 answer

Mpdf unable to print euro symbol (€)

I'm using mpdf to convert a table in html to pdf. This table includes euro symbols (but may contain other currency symbols in the future) the thing is, although I set mpdf charset to utf-8, it keeps printing either (€) or (¬) symbols (no…
M. Villanueva
  • 185
  • 1
  • 17
1
vote
0 answers

Remove unwanted Symbol from Pardot Landing Page using Wordpress Page Code

Trying to remove Euro symbol from button on Pardot landing page (see link below), code for header came from our Wordpress page and using Pardot to host the landing page. Below is the section of code referencing this area. This does have
1
vote
2 answers

Price calculation, comma, and conditional statement

All sorts of topics are dedicated to the European comma problem, i.e. How to change the ',' to an '.', But I've not found a solution for mine yet. I want users to be able to input in the comma-value manner (e.g. 3,99), Then calculate some stuff and…
Jaap Van Nes
  • 45
  • 1
  • 7
1
vote
3 answers

Euro symbol in Jupyter Latex

I am new to Jupyter, I am using it with Node Kernel. My problem is I can't get the "euro" symbol in LaTeX. When I type $ 123 \euro $ in a Markdown cell I get 123 \euro. Do you observe the same behavior ? Any suggestion ? Thanks in…
Nicola Mingotti
  • 860
  • 6
  • 15
1
vote
1 answer

Euro symbol in SciTE4AutoIt3 displayed as x80

The Euro symbol, when running an .au3 file in SciTE4AutoIt3, is represented as x80. Example: What is it and why does it happen?
SimBeSim
  • 9
  • 5
1
vote
1 answer

Regular expression and unicode to extract a price in python

I'm trying to extract some prices from the ikea website but the price format is pretty messy (whitespace, carriage return, a comma in the middle of nowhere). This is what I extracted : 39,90 € , I used Scrapy to…
Bobafotz
  • 65
  • 1
  • 7
1
vote
2 answers

Display EURO Symbol in UTF-8 Format

Im wondering how I can display a Euro symbol in UTF-8 Format ? Cheers
StevieB
  • 6,263
  • 38
  • 108
  • 193
1
vote
2 answers

Displaying a decimal Format for Euros

I want the price to be in Euros €, what do i need to change with the code below? I have it in dollars so far DecimalFormat dollars = new DecimalFormat( "$0.00" );
Sean Collins
  • 25
  • 1
  • 8