JSON → Code Object
Render a JSON sample as a literal in JS, TS, Python, PHP, Ruby, Go, Rust, and Java side by side.
JavaScript
{
id: 42,
email: "alice@example.com",
active: true,
tags: [
"admin",
"beta"
],
profile: {
name: "Alice",
age: 30
},
lastLogin: null
}TypeScript
{
id: 42,
email: "alice@example.com",
active: true,
tags: [
"admin",
"beta"
],
profile: {
name: "Alice",
age: 30
},
lastLogin: null
}Python dict
{
"id": 42,
"email": "alice@example.com",
"active": True,
"tags": [
"admin",
"beta"
],
"profile": {
"name": "Alice",
"age": 30
},
"lastLogin": None
}PHP array
[
'id' => 42,
'email' => 'alice@example.com',
'active' => true,
'tags' => [
'admin',
'beta'
],
'profile' => [
'name' => 'Alice',
'age' => 30
],
'lastLogin' => null
]Ruby hash
{
"id" => 42,
"email" => "alice@example.com",
"active" => true,
"tags" => [
"admin",
"beta"
],
"profile" => {
"name" => "Alice",
"age" => 30
},
"lastLogin" => nil
}Go map[string]any
map[string]any{
"id": 42,
"email": "alice@example.com",
"active": true,
"tags": []any{
"admin",
"beta",
},
"profile": map[string]any{
"name": "Alice",
"age": 30,
},
"lastLogin": nil,
}Rust serde_json::json!
{
"id": 42,
"email": "alice@example.com",
"active": true,
"tags": [
"admin",
"beta"
],
"profile": {
"name": "Alice",
"age": 30
},
"lastLogin": null
}Java Map.of
Map.of(
"id", 42,
"email", "alice@example.com",
"active", true,
"tags", List.of(
"admin",
"beta"
),
"profile", Map.of(
"name", "Alice",
"age", 30
),
"lastLogin", null
)What you get
The same JSON sample rendered as a literal in every major language — JavaScript object, TypeScript object, Python dict, PHP associative array, Ruby hash, Go map, Rust HashMap / Vec, and Java Map.of.
Use it for
- Pasting fixtures into a test in another language
- Translating sample API responses between docs
- Showing a payload the same way across a polyglot codebase
You might also like
- PHP serialize / unserializeConvert between PHP's serialize() format and JSON with a recursive-descent parser.
- CSV ↔ JSON ConverterConvert CSV to JSON or JSON to CSV with quoted fields and configurable delimiters.
- JSON → Struct / ClassGenerate typed declarations from JSON in TypeScript, Python @dataclass, PHP class, Ruby Struct, Go struct, Rust serde, and Java POJO.
- SQL INSERT GeneratorConvert CSV / TSV / JSON into INSERT INTO statements — multi-row VALUES or one statement per row.