> 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/symbols.md).

# Symbols

A number of currency have different symbols, you can specify the symbol when creating the currency.

The Common Currencies have the appropriate symbol configured for each currency.

```dart
void main() {
   test('Symbols', () {
      // Create a currency for Japan's yen with the correct symbol
      final jpy = Currency.create('JPY', 0, symbol: '¥');
      expect(jpy.symbol, equals('¥'));
      final euro = Currency.create('EUR', 2, symbol: '€');
      expect(euro.symbol, equals('€'));
    });
}
```
