DT

Tunisian Dinar

fiat
ISO Code: TNDNumeric: 788Decimals: 3Region: Africa
🇹🇳

Developer Note

3 decimal places (millimes).

Formatting Examples

Valueen-US
1TND 1.000
9.99TND 9.990
100TND 100.000
1234.56TND 1,234.560
1000000TND 1,000,000.000

Intl.NumberFormat

JavaScript
// Basic TND formatting
new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'TND',
}).format(1234.56);
// → "TND 1,234.560"

// Minimum/maximum fraction digits
new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'TND',
  minimumFractionDigits: 3,
  maximumFractionDigits: 3,
}).format(99);
// ISO 4217 minor unit: 3 decimal places

// Stripe / payment API amount
// TND amount = value × 1000
// e.g. 1.000 TND → amount: 1000

Countries Using TND