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
0 answers

Convert byte[] to ISO-8859-15 or utf-8

I need help to convert a byte array into a format which could read the € symbol. Now, the program I'm working on is reading the file like this : new String(bytes, "ISO-8859-1") I find ISO-8859-15 and utf-8 can make € readable. But I can't find a…
ANAFLY
  • 1
  • 2
0
votes
2 answers

Regular Expression For EURO Format

I want the EURO format to be accepted only in the following forms. Three digits with "." Be segregated. i found this expression but not work in my way: ^(0|(([1-9]{1}|[1-9]{1}[0-9]{1}|[1-9]{1}[0-9]{2}){1}(\ [0-9]{3}){0,})),(([0-9]{2})|\-\-)([\…
iAm.Hassan
  • 53
  • 1
  • 10
0
votes
0 answers

Eurosign gives strange result

I've a problem when I'm assigning currency format to a specific range in a Excel sheet. The code in powershell I use to set the format is below : $LC_ws_tab.range("B1 :B5").NumberFormat = "_(€* #.##0,00_);_(€* (#.##0,00);_(€* ""-""??_);_(@_)" The…
hexedecimal
  • 279
  • 1
  • 2
  • 9
0
votes
0 answers

Thousand and decimal separator in a VBA excel

I have an inventory to manage the stock in the lab with 2 sections: one related to the Order and one related to the used parts, but I have a couple of issues: In the Userform that I designed to track the order and the used parts, the operation on…
PiElle
  • 1
  • 1
0
votes
1 answer

Python removing special character from string not working

Yesterday I wrote a script which scraped a value from a webpage, and then removed two special characters ('.' and '€') from the scraped string, so it could then be converted to integer format. Today, nonetheless, the code isn't replacing the '€'…
martifapa
  • 107
  • 3
  • 12
0
votes
1 answer

Excel sports template rank table

I am currently working on a sports template prediction for the upcoming Euro 2020. I haven't gotten that far yet but below is an example of a group. So the "Tecken" column says which team won the game, if there is a 1 there the home team won, if…
Jahlove
  • 65
  • 9
0
votes
1 answer

NumberFormatter parse Euro's with comma as decimal splitter

I've a big headache over this. Why isn't this code working? parseCurrency($num, $curr)." in $curr\n"; ?> I've…
maxdaniel98
  • 6,623
  • 6
  • 19
  • 21
0
votes
1 answer

Special euro characters

I have a string that seems to contain a special € character : my_str # [1] "0€ de frais de courtage" my_str == "0€ de frais de courtage" # [1] FALSE gsub("€","X",my_str) # [1] "0€ de frais…
moodymudskipper
  • 46,417
  • 11
  • 121
  • 167
0
votes
1 answer

pandoc convert to pdf fails when € is in a header

Windows 10 \euro in LaTeX I have MiKTeX 2.9.6300 64-bit, and I can xelatex eurosym where eurosym.tex contains the following LaTeX code: \documentclass{article} \usepackage{eurosym} \begin{document} \section{2\euro{}} % (this line fails if…
joharr
  • 403
  • 4
  • 12
0
votes
1 answer

Jasmin SMPP Euro Sign

how could i send a euro sign using Jasmin http api? What I've tried: %80 %E2%82%AC Parameter coding=0, 1, 3 and empty. Im always just getting "?" in the SMS. It works fine when directly connection via HTTP instead of SMPP to my provider.
Christian
  • 1
  • 4
0
votes
1 answer

XPath, how to delete Euro sign unnecessary characters?

How do i select the text in the span tag that excludes those unnecessary " " characters? I need only the number (euro character at the end would be nice, but it's not a must). Note that the numbers change, they are not the same.
CsharpNoob
  • 39
  • 11
0
votes
1 answer

How to handle EURO currecy symbol in ics calendar meeting on iOS iPhone?

I have published ICS calendar, which users filles with own meetings on web frontend. Currently I got problem, that iOS devices iPhones and iPads are not showing updates, since it stuck to last compatible version. After digging I found that one user…
Arunas Bartisius
  • 1,879
  • 22
  • 23
0
votes
1 answer

Assigning € to arrays

I am working on a website that does not display euro signs properly unless I put $euro; I know this is not ideal but its what have to work with. I have an array of prices that is passed to the webpage via a jquery function but if I use $euro; it…
user2227823
  • 35
  • 1
  • 6
0
votes
0 answers

Incorrect Character coming during FileUpload in Java. UTF-8 encoding issue

I am trying to upload a file using form and this file contain EURO symbol (€). I have already set charset and encoding UTF-8 in form but when i am reading this file i am getting '?' symbol instead of '€' symbol. I have gone through the charset…
Ankit16
  • 13
  • 1
  • 4
0
votes
1 answer

Formatting Euro prices in PHP

I try to convert some prices: [0] => EUR 19,06 [1] => 19, 70 € [2] => 42.53 € [3] => 18€65 [4] => 19,99 € [5] => 18€65 [6] => 23€95 [7] => 19,99 € into this format: xx.xx € I use this…
Kernel
  • 17
  • 1
  • 1
  • 6