Online HTML To JSON Converter

Input data
bfotool loadding
Output data
bfotool loadding

HTML To JSON Converter helps you to convert HTML to JSON online.

HTML to JSON converter simplest

This free online tool lets you convert a HTML file into a JSON file.Just paste your HTML in the form below and it will instantly get converted to JSON No need to download or install any software. Free

Tool what is a HTML to JSON converter?

This HTML to JSON converter transforms HTML data and files into JSON data and files. This converter allows customizing input HTML and output JSON It also accepts HTML files with custom column delimiter characters and field quote characters. It supports comment lines and you can optionally ignore empty lines. You can also change how many spaces to use in the output JSON indentation.

How to Convert HTML to JSON?

Step 1: Select your input. Enter Data.
Step 2: Choose output options (optional) Output Options.
Step 3: Generate output.

HTML to JSON converter examples

Input Data

<table>
    <tr>
        <td>pin</td>
        <td>time</td>
    </tr>
    <tr>
        <td>0001</td>
        <td>1524810082</td>
    </tr>
    <tr>
        <td>0002</td>
        <td>1524810082</td>
    </tr>
    <tr>
        <td>0003</td>
        <td>1524810082</td>
    </tr>
    <tr>
        <td>0004</td>
        <td>1524810082</td>
    </tr>
</table>


Output Data

[
    {
        "pin": "0001",
        "time": "1524810082"
    },
    {
        "pin": "0002",
        "time": "1524810082"
    },
    {
        "pin": "0003",
        "time": "1524810082"
    },
    {
        "pin": "0004",
        "time": "1524810082"
    }
]