A few years ago I wrote a TCP diagnostic tool (which is still freely downloadable), originally just for myself. It had some features like sending/reveiving UDP packets, opening SSL/TLS connections, dumping content as hex, forward TCP connections and more.
One day, I added an easter egg to it (it is even in a class called EasterEgg.java, but since the code is not open source, it does not matter). When you configured the forwarder module to forward to host "eASTER" and port name (which usually gets looked up from an embedded copy of /etc/services) "eGG", it would instead open port 5993 (eggs when viewing it upside down on a calculator) and connect to it.
When connecting to that port with telnet, it will just print a few funny messages, and if you connect to it via putty (in telnet mode, not in raw mode) it will play a nice ANSI effect. When connecting with a webserver (http), it returned a funny website with an unload button to close the port again, and when connecting with a POP3 client (any username and any password) it kept returning the same email message over and over again.
It was fun to do the protocol detection, and later I showed it to a colleague and he liked it as well.