What is the current value of a 20 cent Josephine Baker coin?

Since its release, the 20-centime coin bearing the image of Josephine Baker has generated consistent interest, which remains strong in 2026. Unlike everyday coins that end up forgotten at the bottom of a wallet, this commemorative coin represents a powerful symbolic turning point in the history of European currency in France. The introduction of historical female figures into the “Women of Exception” collection has shaken up collectors’ habits, creating a specific micro-economy around these small golden discs. While the majority of coins in circulation are worth little more than their face value, certain specific variants, particularly those in impeccable condition or with manufacturing errors, reach astronomical prices on the collectors’ market. It is fascinating to observe how an everyday object, minted in the millions, can become the object of desire and sometimes irrational speculation. Understanding the mechanics of this valuation requires considering the quality of the minting, recent numismatic history, and the sometimes misleading realities of online sales. In short: The essentials to remember about this coin 💰Standard value:

A worn coin found in your local bakery is worth exactly €0.20.

  • Mint condition:
  • “Uncirculated” (never circulated) examples trade for around €11. 📈
  • High-end: In very good condition, the value can range between €50 and €100.
  • 💎 The holy grail: Coins with minting errors (very rare) can theoretically reach €30,000.
  • ⚠️ Beware of scams:
  • Listings at €50,000 on general websites are fanciful. 🔍 Identification:

It is made of Nordic gold and weighs 5.74 g.

Value analysis: What is the current value of a 20-cent Josephine Baker coin? Determine the numismatic value Accurately assessing the value of a contemporary coin is an exercise that requires rigor and observation. By 2026, the market had stabilized after the euphoria of the first years of issue, allowing for the establishment of a fairly clear price hierarchy. The first factor, and by far the most decisive, remains the condition of the object. In numismatics, the slightest scratch, the smallest dent on the edge, or the partial fading of the details causes the value to plummet. For the 20-centime Josephine Baker coin, the difference is striking between a coin from a bank roll and one that has circulated from hand to hand. It is observed that the vast majority of coins found in one’s wallet have no significant added value. If the coin is damaged, tarnished, or scratched, it is only worth its face value, or 0.20 euros. It’s a reality we must accept: rarity stems not from the design, but from the quality of preservation. However, collectors actively seek what are known as “Fleur de Coin” (FDC) or “Brilliant Uncirculated” (BU). These are coins that have never been in circulation, handled with gloves, and often kept sealed or in official cases from the Monnaie de Paris (Paris Mint). For these examples, the current value is around 11 euros, although fluctuations can occur depending on demand. There is, however, an intermediate category. Coins in “Very Fine” (VF) or “Superb” (SUP) condition, which have seen very little circulation and retain their original luster (the famous mint luster), can be traded for between 50 and 100 euros. This range applies to coins that, although they have left the mint, were intercepted very early on by discerning collectors before suffering the ravages of time. Finally, the realm of the exceptional concerns minting errors. This is where the figures skyrocket and inspire dreams. A die error, a double strike, or a metal defect are anomalies that should not have passed quality control. These numismatic “monsters” are extremely rare. This is why their price can, in very well-documented cases, climb as high as 30,000 euros. However, caution is advised: these cases represent a tiny fraction of the total production.

Value Comparator 20 Cent Coin “Josephine Baker” • Select a condition to estimate

20c

Selected Estimate

Select a condition

Quantity Owned

Total Potential Value

€0.00

${coin.details}

${coin.priceDisplay}

Estimate

`; container.appendChild(el);
}); } /** * Handles row selection */ function selectCoin(id) { selectedCoinId = id; / Visually update rows const rows = container.children; Array.from(rows).forEach(row => { const rowId = parseInt(row.getAttribute(‘data-id’)); if (rowId === id) { row.classList.add(‘ring-2’, ‘ring-offset-2’, ‘ring-blue-500’, ‘bg-blue-50’); row.classList.remove(‘bg-white’); } else { row.classList.remove(‘ring-2’, ‘ring-offset-2’, ‘ring-blue-500’, ‘bg-blue-50’); row.classList.add(‘bg-white’); } }); updateCalculator(); } /** * Calculates and updates display of values */ function updateCalculator() { if (!selectedCoinId) return; const coin = coinData.find(c => c.id === selectedCoinId); const qty = parseInt(quantityInput.value) || 0; / Update the state text displayState.textContent = coin.state; displayState.className = “text-blue-600 font-bold text-lg mb-4 h-6 animate-pulse-once”; / Calculate the total const total = coin.priceValue * qty; / Format in French currency const formatter = new Intl.NumberFormat(‘fr-FR’, { style: ‘currency’, currency: ‘EUR’ }); displayTotal.textContent = formatter.format(total); / Simple animation on the total text displayTotal.classList.remove(‘scale-100’); displayTotal.classList.add(‘scale-110’);