Self-loops (edges from a node to itself, like ) do not affect SCC structure. Node is still in the same SCC with or without the self-loop. Single isolated nodes with no incoming or outgoing edges form SCCs of size .
Every node belongs to exactly one SCC, even if it is alone. Make sure your SCC algorithm handles edge cases: graphs with , graphs with (no edges), and graphs where all nodes are isolated.