din.
Serbian Dinar
fiatISO Code: RSDNumeric: 941Decimals: 2Region: Europe
🇷🇸
Formatting Examples
| Value | en-US |
|---|---|
| 1 | RSD 1 |
| 9.99 | RSD 10 |
| 100 | RSD 100 |
| 1234.56 | RSD 1,235 |
| 1000000 | RSD 1,000,000 |
Intl.NumberFormat
JavaScript
// Basic RSD formatting
new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'RSD',
}).format(1234.56);
// → "RSD 1,235"
// Minimum/maximum fraction digits
new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'RSD',
minimumFractionDigits: 2,
maximumFractionDigits: 2,
}).format(99);
// ISO 4217 minor unit: 2 decimal places
// Stripe / payment API amount
// RSD amount = value × 100
// e.g. $10.00 → amount: 1000