I'm using pywhatkit library for sending message to whatsapp, and it works fine, but I need to send emoticon and the text splitted in more line.
Is possible to send new line and emoticon?
I've tried with the following code:
msg = 'text :-) \n new line :-)'
pywhatkit.sendwhatmsg_instantly(NUMBER, str(msg) , 5, False, 5)
but it not works, and I received the exactly string (not emoticon and new line) that I've worte
Thanks a lot
You can write
msgvariable like this to send the message in next line And to get the emoticons you can use hex codes like this:\U0001F600(Reference: Emoticon) -