If a label contains a html table cfgexplorer requires the label to be between quotes ("), while graphviz requires the label to be between < and >, otherwise it will render it as plain text.
Cfgexplorer:
digraph Mir {
"bb6" [shape="none", label="<table><tr><td>unreachable</td></tr></table>"];
}
Graphviz:
digraph Mir {
"bb6" [shape="none", label=<<table><tr><td>unreachable</td></tr></table>>];
}