I recently upgraded my app to Swift 3.1 (it was in Swift 2).
Post upgrade I noticed that a unicode symbol I have been using for a long time is incorrectly displayed.
The symbol is the 'ballot' symbol which in Swift is:
"\u{2717}"
The symbol actually being displayed looks like a multiplication/cartesian product symbol:
"\U{00D7}"
The font I am using is Helvetica Neue.
No other unicode symbols I am using have been impacted (e.g. Star)
Check out this wikipedia page to see what the ballot symbol and multiplication\cartesian product symbol look like.
Thoughts?