Is your feature request related to a problem? Please describe.
Formatting currency with code "SAR", doesn't show the new Saudi riyal () symbol.
Describe the solution you'd like
The API should be updated to support it "", since now it have a unicode "U+20C1".
Additional context
Here is a sample code it explain it more:
let amount = 50
let formatted = amount.formatted(.currency(code: "SAR"))
print(formatted) // SAR 50.00
let saLocale = Locale(identifier: "ar_SA")
let formattedWithSA = amount.formatted(.currency(code: "SAR").locale(saLocale))
print(formattedWithSA) // ٥٠٫٠٠ ر.س.
Is your feature request related to a problem? Please describe.
Formatting currency with code "SAR", doesn't show the new Saudi riyal () symbol.
Describe the solution you'd like
The API should be updated to support it "", since now it have a unicode "U+20C1".
Additional context
Here is a sample code it explain it more: