My MQTT data looks like this: {"topic": "heating/Hz system/flow temperature", "payload":33, "qos":0, "retain":false,"_msgid": "446dfe39.cc451"}
How could a change or function node look like that I can send the payload value (="33") including a text ("The value is: xxxx") with telegram messenger with this node
When you have, send some test messages to get the feel for it.
Assuming you have those things working, all you need to do is to combine the payload into a string. I'd probably use JSONata for that since all you would need is "The value is: " & payload (actually you may need to wrap the payload in a function to turn it into a string, I can't quite remember.