Q

Guatemalan Quetzal

fiat
ISO Code: GTQNumeric: 320Decimals: 2Region: Americas
🇬🇹

Formatting Examples

Valueen-US
1GTQ 1.00
9.99GTQ 9.99
100GTQ 100.00
1234.56GTQ 1,234.56
1000000GTQ 1,000,000.00

Intl.NumberFormat

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

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

// Stripe / payment API amount
// GTQ amount = value × 100
// e.g. $10.00 → amount: 1000

Countries Using GTQ