Can I send data to controller via UDP as byte set?

For example i need send this:

0x55,0xAA,0x00,0x00,0x01,0x01,0x00,0xDA,0x00,0x00,0x00,0x00,0x00,0x00,0x65,0x00,0x00,0x00,0x65,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x10,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x47,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xD0,0xC5,0xAD,0xC4,0xFA,0x41,0x42,0x43,0x44,0x45,0x31,0x32,0x33,0x34,0x35,0x00,0x00,0x0D,0x0A

As I can do it?

Try this extension.

Thanks. But as I can send not visible bytes? for example I can send string “ABCDE123” its wil be convert to byte set 41 42 43 44 45 31 32 33. But as I can send not visible byte (as 00 01 etc.)? And I need send as byte, not string

And this UDP client extension not support UTF-8 encoded. I send string with russian symbols (“АБВ”). Each character is encoded in two bytes.
А->D0 90
Б->D0 91
В->D0 92
But via UDP client send 3 bytes only (D0 90 D0), instead of 6.

Maybe there is an extension that works correctly with UTF-8 encoding? I am willing to pay for this extension.