I'm trying to send a text for example "Hello # World" with Telegram API with this url:
https://api.telegram.org/bot'token'/sendMessage?chat_id='chatid'&text=Hello+#+World
But I just receive Hello
I also tried to encode it like this:
https://api.telegram.org/bot'token'/sendMessage?chat_id='chatid'&text=Hello+%23+World
But I just receive Hello %23 World
.
Any solution to receive Hello # World
? Thanks :D