> For the complete documentation index, see [llms.txt](https://money2.onepub.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://money2.onepub.dev/find-a-currency.md).

# Find a currency

To find a Currency that either belongs to one of the [Common Currencies](/common-currencies.md) or one that you have [registered](/registering-a-currency.md) you can use the `Currencies().find` method.

```dart
    test('Find a currency', () {
      // Find a registered currency via its code.
      final audCurrency = Currencies().find('AUD');
      final audCostPrice = Money.fromIntWithCurrency(899, audCurrency!);
      expect(audCostPrice.currency.isoCode, equals('AUD'));
    });
```

The Money parser is also able to automatically find a currency if the currency code is a Common Currency or one you have registered.
