I have tried just getting Ⓜ on iOS but there seems to be bugs with It everywhere. Converting a string with text like "MMMMmMMM" to the circled letters will result in "Ⓜ️Ⓜ️Ⓜ️ⓜⓂⓂⓂ". I have tried the unicode version of the letter but everywhere I put it will work the same. If i copy and paste Ⓜ It will also be converted into the Emoji. So I cannot just insert Ⓜ at the beginning of a text field/view, and cannot get Ⓜ as a UIButton title. Does anybody know of a solution or workaround to get the correct version of this character for UIButton title and inserting anywhere in a body of text?
Edit: Here is the code
[button setTitle:@"Ⓜ" forState:UIControlStateNormal];
[button setTitle:@"\u24C2" forState:UIControlStateNormal];
Either of these ways with a system UIButton result in the same thing, the emoji Metro M.
Edit 2: Changing the font of the button to another will make the button display the correct version, but since the text is inserted into a UITextField or UITextView or anything else, the text is inserted as that font which turns It into emoji.