Skip to content Skip to sidebar Skip to footer

How Can I Display An Emoji In The Toolbar Title?

I have an emoji(ex: '\U0001F610') and I'd like to display it in the toolbar title. It works well in a TextView, but it doesn't seem to work for the toolbar. Can you give me any adv

Solution 1:

ActionBar.Title = "\uD83D\uDE03";

enter image description here

ActionBar.Title = "\uD83D\uDE03" + "\uD83D\uDE0F" + "\uD83D\uDE10";

enter image description here

Post a Comment for "How Can I Display An Emoji In The Toolbar Title?"