Im having trouble concatenating these Unicode emojis with strings in Python3 (to send in Pushwoosh notifications).
Im defining emojis as Unicode variables:
stick_out_tongue = u'U+1F61C'
And then concatenating the string as such:
message = ' Message here...'
message = stick_out_tongue + message
But the output looks turns out like :
'U+1F61C Message here...'
Plz hlp.