---
title: from nuon
categories: |
formats
version: 0.104.0
formats: |
Convert from nuon to structured data.
usage: |
Convert from nuon to structured data.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->
# `from nuon` for [formats](/commands/categories/formats.md)
<div class='command-title'>Convert from nuon to structured data.</div>
## Signature
```> from nuon {flags} ```
## Input/output types:
| input | output |
| ------ | ------ |
| string | any |
## Examples
Converts nuon formatted string to table
```nu
> '{ a:1 }' | from nuon
╭───┬───╮
│ a │ 1 │
╰───┴───╯
```
Converts nuon formatted string to table
```nu
> '{ a:1, b: [1, 2] }' | from nuon
╭───┬───────────╮
│ a │ 1 │
│ │ ╭───┬───╮ │
│ b │ │ 0 │ 1 │ │
│ │ │ 1 │ 2 │ │
│ │ ╰───┴───╯ │
╰───┴───────────╯
```