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

Enforcing proper UTF-8 encoding from user input in a form

i have a web form written in asp.net that allows user enter content which is then saved to a DB and written out as an xml file for a third party to import into their systems. We output the xml file as UTF-8. They currently have a problem where a…
Colm Troy
  • 1,947
  • 3
  • 22
  • 35
0
votes
1 answer

shiny - Display Euro symbol in plots

I have a developed a shiny app that displays Euro amounts on the y-axis label. It does not render in the plot output. How do I get around this issue? The following is in the server.R: plot(monthRange, euroPerMonth/1000, type="l", …
cogitoergosum
  • 2,309
  • 4
  • 38
  • 62
0
votes
1 answer

iOS: Can't print euro symbol on bluebamboo printer

I'm trying to print text using some receipt data, and I need to use the euro symbol (\xE2\x82\xAC €) but the P25i mobile printer is printing "â ¬" instead. My code: int contentLength = (int)[_printBuffer length]; unsigned char…
kevinl
  • 4,194
  • 6
  • 37
  • 55
0
votes
0 answers

Can't I display symbol € into pdf?

I am using pdftk.exe to fill a pdf template and i need fill input form with € symbol. The problem is that when it views the pdf, not displaying the € symbol and It replace by a special symbol (¤). It could be by the encoding, but i don't know how…
0
votes
1 answer

How to change the image size of an Europass in JSON?

I did a program in Python which sends JSON data to the Europass web and gets from it a CV. It's working great, but the image of the person is looking bad, because I send a square picture, and the Europass CV shows a rectangular image, so the people…
forvas
  • 9,801
  • 7
  • 62
  • 158
0
votes
2 answers

Conversion of euro symbol

In my web application euro (€) symbol is being converted to question mark (?). It is built on Java. The code is fine but when deployed the EAR on WAS 6.0 sometimes it works fine but sometimes it converts the € to a ?. Is this something related to…
Vishwa
  • 300
  • 5
  • 16
0
votes
1 answer

How to get the Euro Symbol in PHP & MySQL correctly

I have an Excel file in which there are currency symbols. When I upload that file using PHP in my database it makes the Euro Symbol i.e '€' like '¬'. I have kept the collation for the currency symbol as utf8-general-ci. Also when i tried echoing the…
Darshan
  • 39
  • 1
  • 2
  • 12
0
votes
2 answers

euro sign from php to csv shows Â

I´m having trouble with the output to a csv file with the euro sign. i´ve tried using € which doesn´t work and the &euro which also doesn´t work. This only works in my table view but not when exported to csv. Hopes someone could help me…
Graham
  • 1,850
  • 4
  • 21
  • 41
0
votes
2 answers

Conversion from HTML to XHTML changes euro symbol, preventing correct XML parsing

I am extracting information from an HTML file, by parsing it using SAX, in Java. The parsing program was given to me, it was already using SAX, so I would like to keep it this way. What I do is the following : I get the HTML file from a…
Myna
  • 569
  • 2
  • 10
  • 24
0
votes
1 answer

Toad € to € symbol Oracle euro UTF-8

I am using Toad 9.0.1.8. A table in a column was showing a euro € symbol as € I've tried changing the environment variable NLS_LANG=AMERICAN_AMERICA.AL32UTF8 in my windows machine, I've also tried using American_America.UTF8 and…
pirategod7
  • 11
  • 1
  • 7
0
votes
1 answer

Bootstrap, webfont on windows -> euro accent are bolder

I've got a problem with euro accents on windows (on linux everything is ok). Just lets see the screenshot https://www.dropbox.com/s/ziysatyhjwstlsc/01.jpg How can I fix it? edit: in code i've got: font-family: Ubuntu, Tahoma; and whole page is…
tommy
  • 388
  • 2
  • 14
0
votes
2 answers

Euro Symbol not viewed in windows forms

I am trying to print the Euro Symbol in my Windows forms application with the following code. It works for all other characters & symbols, but Euro(€) is not displaying. string input = ((char)128).ToString(); Font f = new…
Uthistran Selvaraj
  • 1,371
  • 1
  • 12
  • 31
0
votes
0 answers

Apache Derby Database euro sign

I am saving a record with a string that has a euro(€) sign into my derby database. When I retrieve this record, I am getting a question mark. Do I have to set any char set in derby db settings?
praveen
  • 81
  • 8
0
votes
1 answer

How is euro sign stored in CLOB field in Oracle (AL32UTF8 character set)?

I am using a web application which runs on WebSphere and interacts with an Oracle database (using the AL32UTF8 character set). If I use the web application to input some text and then press the "save" button, I expect the text to be saved to a CLOB…
Andy
  • 2,770
  • 9
  • 35
  • 42
0
votes
1 answer

Committing a € euro sign via subversion

I am experiencing an issue with the committing a Euro symbol (€) through subversion. When I execute the following command: svn diff CRMPicco.inc.php I see this: - '€' => '€', // ⬠- Euro + 'â¬' …
crmpicco
  • 16,605
  • 26
  • 134
  • 210