CSV → YAML
Convert data in CSV format to YAML format. As in the example below, paste CSV on the left and the YAML result appears instantly on the right.
Example
CSV
id,name,role
1,Ada,admin
2,Linus,editorYAML
- id: 1
name: Ada
role: admin
- id: 2
name: Linus
role: editorHow to Convert
- Select CSV as the source format and YAML as the target format.
- Paste your CSV data into the input box on the left.
- Copy or download the YAML result generated on the right.
Notes
- Every conversion happens inside the browser, and the data you enter is never sent to a server.
- Since CSV can express only a tabular structure, nested objects and arrays are stored inside cells as JSON strings.