What is in your opinion the single worst subject of widespread ignorance amongst programmers, i.e. something that everyone who aspires to be a professional should know and take seriously, but doesn't?
Mine is "bytes and characters are NOT the same thing, nor trivially convertible". I can't count how many times I've seen otherwise competent programmers completely ignore the issue of character encodings, misapply them horribly, or do multiple unnecessary and potentially destructive conversions between them.
The worst case I've seen was an XML interface implemented in Java that accepted both String and byte[], yet the byte[] method used a fixed encoding to get a String and passed that to the String method, which used the platform default encoding to convert the String to byte[], then the fixed encoding to turn those into a String again and pass them to the XML parser. Of course, the XML parser would have happily accepted the original byte[], and even correctly parsed the encoding declared in the XML, which is the only one that should matter.
I blame it all on the C standard.