To get the symbol of the Armenian Dram, I do the following:
NSLocale(localeIdentifier: "hy_AM").objectForKey(NSLocaleCurrencySymbol) as! String
This gets me a square with a question mark inside while I should get the Armenian Dram symbol Դ
.
If I try directly with the unicode symbol \u{058F}
I get the same square with the question mark inside.
What's wrong?
EDIT:
It actually works fine on iOS 8 but doesn't on iOS 9.