TL;DR version: use # coding: utf-8 or # encoding: utf-8; they are modern and there is no difference between them.
According to this most enlightening article In Ruby 1.9 the rule is that the magic comment must be:
the first line of your code is a comment that includes the word coding, followed by a colon and space, and then an Encoding name...
So that covers 1, 2 & 3 and probably would include stuff like # foobarcoding: utf-8 as well. This is the preferred method for Ruby 1.9.
For compatibility reasons there are retained the hash bang -K* switches from Ruby 1.8, which covers 4.
Numbers five and six cover a slightly different thing. I recommend reading through the aforelinked article to see how external and internal encodings work exactly. However the gist is that when you read data via an IO object it matters how that data is encoded for reading it correctly. External encoding expresses just that. So when you set external encoding to UTF-8 you imply that the file you are reading is encoded in UTF-8. The internal encoding is to what encoding should Ruby automatically transcode the resulting string from that operation.
The default you are setting is used when an external encoding is not set explicitly. These defaults can be changed via the -E flag in the hash bang (number 5; thus 5 and six would work identically).
Passing -U will set the internal encoding to UTF-8 (meaning that strings will be transcoded automatically to UTF-8 when read).
# -*- coding: utf-8 -*-. The-*-are there to signify that it is a magic comment and shouldn't be removed. – Jakub Hampl Dec 12 '11 at 0:18