Yes, you can use multicast for this. Your sender just emits UDP packets to any address in the 224.x.x.x to 239.x.x.x range. Your receivers listen on the same address, and the underlying stack and network fabric figure out how to get the packets from sender to receiver.
Beware that this range is subdivided so that certain addresses will be more appropriate to your application than others. You might choose 239.x.x.x for a program that's only used on a single LAN, for instance.
Also beware that this only works with UDP -- there's no such thing as multicast TCP -- and that getting it to work across routers may be difficult. Getting it to work across the current Internet is especially difficult, since most ISPs don't support multicast.