Print the alphabet without using each vowel
Golfscript - 8 chars
123,97>+
Brainfuck, 38 chars
++++++[->++++<]>[->+>++++<<]>++[->+.<]
There are, of course, no vowels (or any other letters) in brainfuck syntax.
PHP, 31 Bytes
No a,e,i,o,u:
<?=~žœ›š™˜—–•”“’‘ŽŒ‹Š‰ˆ‡†…;
The binary string after the tilde has the following hex representation:
\x9e\x9d\x9c\x9b\x9a\x99\x98\x97\x96\x95\x94\x93\x92\x91\x90\x8f\x8e\x8d\x8c\x8b\x8a\x89\x88\x87\x86\x85
Since there's a language scoreboard, I may as well submit this one as well:
Ruby (v1.8) 18 bytes
$><<[*97.chr..'z']