# Decimal to Binary and Hex Converter

**Use case:** 

Convert decimal IDs, flags, and integers into binary, octal, hex, and base36 formats for engineering workflows.

## Input

```json
{
  "numbers": [
    "255",
    "1023",
    "65535",
    "4294967295"
  ],
  "fromBase": 10,
  "toBases": [
    2,
    8,
    16,
    36
  ],
  "upperCase": true,
  "includePrefix": true
}
```

## Output

```json
{
  "input": {
    "label": "Input"
  },
  "fromBase": {
    "label": "From Base"
  },
  "binary": {
    "label": "Binary (2)"
  },
  "octal": {
    "label": "Octal (8)"
  },
  "decimal": {
    "label": "Decimal (10)"
  },
  "hex": {
    "label": "Hex (16)"
  },
  "base36": {
    "label": "Base36 (36)"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [Number Base Converter](https://apify.com/automation-lab/number-base-converter) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/number-base-converter) to learn more, explore other use cases, and run it yourself.