You can use pre tag to display formatted json.

const json = {
  id: "1",
  employee_name: "Tiger Nixon",
  employee_salary: "320800",
  employee_age: "61",
  profile_image: ""
};
document.getElementById("app").innerHTML = JSON.stringify(json, (key, value) => (value || ''), 4).replace(/"([^"]+)":/g, '$1:');
	<div><pre id="app"></pre></div>

Answer from Santosh Sagar on Stack Overflow
๐ŸŒ
Marianoguerra
marianoguerra.github.io โ€บ json.human.js
json.human.js - Json Formatting for Human Beings
Provide JSON and get a DOM node with a human representation of that JSON. At Event Fabric we need to display JSON to people from all technical levels without being too technical but also without losing information about the underlying JSON object. you can see js/demo.js in the repo for an example, here is a short one ยท var node = JsonHuman.format(input); output.appendChild(node);
Discussions

Converting Json file to a human readable format? - Stack Overflow
I have a js file which is in json format and i want to convert this file to a human readable format.Is there any external software which does that or i have to code it??Am new to this stuff. More on stackoverflow.com
๐ŸŒ stackoverflow.com
FracturedJson - a JSON formatter that produces human-readable but fairly compact output
3 years have passed. We now have linting and minifiers for the numerous JSON formatting libs that have been released. There are now 8 competing standards on how best to format JSON so it's pretty. Joking aside, great idea. I've rarely had problems reading formatted JSON, but lining it up as though it's columns is definitely a lot easier on the eyes and for comparing data in arrays. More on reddit.com
๐ŸŒ r/javascript
23
183
January 18, 2021
[Help] How to convert .json files to something readable by a pleb like me
JSON files are human readable, but there probably is a lot of data in there you don't care about. The easiest way would be to write a small script to extract the data you want and write it to a file. Unfortunately this isn't super easy for a non-programmer to do. More on reddit.com
๐ŸŒ r/learnprogramming
4
1
October 26, 2018
jquery - Convert JSON hash to human readable string - Stack Overflow
Communities for your favorite technologies. Explore all Collectives ยท Ask questions, find answers and collaborate at work with Stack Overflow for Teams More on stackoverflow.com
๐ŸŒ stackoverflow.com
March 8, 2012
๐ŸŒ
GitHub
github.com โ€บ marianoguerra โ€บ json.human.js
GitHub - marianoguerra/json.human.js: Convert JSON to human readable HTML
var input = { "url" : [ "www.google.com", "www.google.com", { "x" : "x-direction", "y" : "y-direction", "url" : "www.google.com" } ] }; var node = JsonHuman.format(input, { // Show or hide Array-Indices in the output showArrayIndex: true, // Hyperlinks Option // Enable <a> tag in the output html based on object keys // Supports only strings and arrays hyperlinks : { enable : true, keys: ['url'], // Keys which will be output as links target : '_blank' // 'target' attribute of a }, // Options for displaying bool bool : { // Show text?
Starred by 978 users
Forked by 78 users
Languages ย  JavaScript 88.4% | HTML 8.9% | CSS 2.7% | JavaScript 88.4% | HTML 8.9% | CSS 2.7%
๐ŸŒ
JSON Formatter
jsonformatter.curiousconcept.com
JSON Formatter & Validator
If enabled, it will replace incorrect ... and remove comments and trailing commas. JSON or JavaScript Object Notation is a language-independent open data format that uses human-readable ......
๐ŸŒ
JSON Viewer
jsonviewer.stack.hu
Online JSON Viewer and Formatter
JSON, short for JavaScript Object Notation, is a lightweight computer data interchange format. JSON is a text-based, human-readable format for representing simple data structures and associative arrays (called objects).
๐ŸŒ
Quora
quora.com โ€บ Is-JSON-human-readable
Is JSON human-readable? - Quora
Answer (1 of 3): โ€œIs JSON human readable?โ€ Generally speaking, yes. Hereโ€™s an example, taken from here: [code]{ "glossary": { "title": "example glossary", "GlossDiv": { "title": "S", "GlossList": { "GlossEntry": { "ID": "SGML", ...
Find elsewhere
๐ŸŒ
Medium
medium.com โ€บ @tempmailwithpassword โ€บ formatting-json-for-human-readability-in-javascript-41e6d8972733
JavaScript Formatting JSON for Human Readability
November 20, 2024 - Pretty-printing JSON is essential for improving the readability and usability of data. Using JavaScript, developers can apply indentation, whitespace, and color coding to make JSON more human-friendly.
๐ŸŒ
BitRecover
bitrecover.com โ€บ home โ€บ convert your data โ€บ how to convert json to readable formats in batch?
Convert JSON File to Readable Format in Bulk for Humans
November 12, 2025 - BitRecover Chat Converter tool is of of the best solution that offers you the opportunity to convert JSON file to readable format in bulk effortlessly on your Windows system. This is an all-in-one software that supports all JSON (JavaScript ...
๐ŸŒ
JSON Formatter
jsonformatter.org
Best JSON Formatter and JSON Validator: Online JSON Formatter
This JSON online formatter can also work as JSON Lint. Use Auto switch to turn auto update on or off for beautification. It uses $.parseJSON and JSON.stringify to beautify JSON easy for a human to read and analyze.
๐ŸŒ
JSONLint
jsonlint.com
JSONLint - The JSON Validator
JSONLint is a validator and reformatter ... format. Copy and paste, directly type, or input a URL in the editor above and let JSONLint tidy and validate your messy JSON code. JSON (pronounced as Jason), stands for "JavaScript Object Notation," is a human-readable and compact solution to represent ...
๐ŸŒ
Make Tech Easier
maketecheasier.com โ€บ home โ€บ internet โ€บ 3 great json beautifiers to make your data pop
3 Great JSON Beautifiers to Make Your Data Pop - Make Tech Easier
March 12, 2021 - Even Assembly code is in a somewhat readable format for humans. Often, youโ€™ll โ€œminifyโ€ your code to speed up processing time but will ultimately make it less readable. A beautifier turns this minified code back into something you can read. In this post, we focus on JavaScript Object Notation (JSON...
๐ŸŒ
Reddit
reddit.com โ€บ r/javascript โ€บ fracturedjson - a json formatter that produces human-readable but fairly compact output
r/javascript on Reddit: FracturedJson - a JSON formatter that produces human-readable but fairly compact output
January 18, 2021 - The place for news, articles and discussion regarding WordPress, the open source software. Wordpress.com-related questions should be posted to https://wordpress.com/forums/. ... You know...for memes... about programming... ... I just discovered this human-readable JSON formatter, check it out!
๐ŸŒ
Code Beautify
codebeautify.org โ€บ json-to-text-converter
JSON to Text Converter: Convert JSON to plain text format / txt format
JSON to Text Converter is easy to use tool to convert JSON to Text data. Copy, Paste and Convert. It's very convenient tool to convert JavaScript Object Notation data to plain text for novice user or data analyze who does not understand JSON data.
๐ŸŒ
Data Page
data.page โ€บ json
JSON Data Format: What It Is and How to Use It
The JSON notation is very similar to the Javascript language structure of associative arrays and objects. It consists of name value pairs existing within a parent-child relationship. Adoption of JSON has been growing rapidly and is used by a growing number of websites throughout the world. AJAX (a common method of communication between websites and servers) often uses JSON as the communication language. Our website converts this machine readable format to human readable CSV (viewable in a spreadsheet).
๐ŸŒ
npm
npmjs.com โ€บ package โ€บ json-to-plain-text
json-to-plain-text - npm
August 26, 2025 - json-to-plain-text is a lightweight npm package that converts JSON into a clean, human-readable plain-text.
      ยป npm install json-to-plain-text
    
Published ย  Aug 26, 2025
Version ย  1.2.0
Author ย  sumithemmadi
๐ŸŒ
Reddit
reddit.com โ€บ r/learnprogramming โ€บ [help] how to convert .json files to something readable by a pleb like me
r/learnprogramming on Reddit: [Help] How to convert .json files to something readable by a pleb like me
October 26, 2018 -

Dear programmers of Reddit,

Instagram allows people to download their data as .json files. I need to read the contents of the direct messages .json file for a message I sent to someone many months ago and we text a lot so scrolling will take hours if not a day.

Please teach me. I don't know anything about programming so if there is a way I can convert it to a word or txt file it would be great!

Thanks in advance!

๐ŸŒ
Medium
medium.com โ€บ @dwinTech โ€บ json-vs-human-json-which-format-fits-your-needs-9761180bb5f9
JSON vs Human JSON: Which Format Fits Your Needs? | by Dwin Technology | Medium
August 12, 2024 - When it comes to data interchange ... different systems. Recently, the concept of Human JSON has emerged, offering a more readable format for humans while maintaining the structure of JSON....
๐ŸŒ
FreeFormatter
freeformatter.com โ€บ json-formatter.html
Free Online JSON Formatter - FreeFormatter.com
JSON stands for "JavaScript Object Notation" and is pronounced "Jason" (like in the Friday the 13th movies). It's meant to be a human-readable and compact solution to represent a complex data structure and facilitate data-interchange between systems. There are tons of reasons why you would want to use JSON: It's human readable... if it's properly formatted ...