Top "Currency" questions

Currency is a medium of exchange of value, usually referring to government issued denominations.

How to format numbers as currency string?

I would like to format a price in JavaScript. I'd like a function which takes a float as an argument …

javascript formatting currency
decimal vs double! - Which one should I use and when?

I keep seeing people using doubles in C#. I know I read somewhere that doubles sometimes lose precision. My question …

c# double decimal precision currency
Java Currency Number format

Is there a way to format a decimal as following: 100 -> "100" 100.1 -> "100.10" If it is a round number, …

java currency number-formatting
Why not use Double or Float to represent currency?

I've always been told never to represent money with double or float types, and this time I pose the question …

floating-point currency
What is the best data type to use for money in C#?

What is the best data type to use for money in C#?

c# types currency
Best data type to store money values in MySQL

I want to store many records in a MySQL database. All of them contains money values. But I don't know …

mysql sqldatatypes currency
How can I correctly format currency using jquery?

I do not need a mask, but I need something that will format currency(in all browsers) and not allow …

jquery currency formatter
HTML text input field with currency symbol

I would like to have a text input field containing the "$" sign in the very beginning, and no matter what …

html text field currency persistent
Currency formatting in Python

I am looking to format a number like 188518982.18 to £188,518,982.18 using Python. How can I do this?

python formatting currency
What is the best method of handling currency/money?

I'm working on a very basic shopping cart system. I have a table items that has a column price of …

ruby-on-rails ruby currency