if (isNumber()) {
Value value = instruction.getValue();
builder.append("<HTML>");
builder.append("<center><b>Valor Numérico</b></center> ");
builder.append("<br>");
builder.append("<b>Binário:</b> ").append(value.toBinary());
builder.append("<br>");
builder.append("<b>Decimal:</b> ").append(value.toDecimal());
builder.append("<br>");
builder.append("<b>Hexadecimal:</b> ").append(value.toHex());
builder.append("</HTML>");