Development
Convert JSON data into C# classes with PascalCase properties, JsonPropertyName attributes, and nested type inference
json-to-csharpDevelopment
Convert JSON data into Go struct definitions with json struct tags, exported PascalCase fields, and nested type inference
json-to-goDevelopment
Convert JSON data into Java classes with Jackson @JsonProperty annotations, private fields, getters, and setters
json-to-javaDevelopment
Convert JSON data into Kotlin data classes with @SerializedName annotations, nullable handling, and nested type inference
json-to-kotlinDevelopment
Convert JSON data into Rust structs with serde Serialize/Deserialize derives, snake_case fields, and serde rename attributes
json-to-rustDevelopment
Convert JSON data into TypeScript interfaces or type aliases with union types, optional fields, and nested object inference
json-to-typescriptDevelopment
Browse the complete ASCII character table (0–127) with decimal, hex, octal, binary, HTML entity, and control character names; filter by code or name
ascii-tableDevelopment
Convert a cURL command into a Go net/http code snippet with http.NewRequest, headers, and body
curl-to-goDevelopment
Convert a cURL command into a JavaScript axios code snippet with config object, headers, and data
curl-to-js-axiosDevelopment
Convert a cURL command into a JavaScript fetch() code snippet with headers, body, and method
curl-to-js-fetchDevelopment
Convert a cURL command into a PHP cURL code snippet with curl_setopt, headers, and post fields
curl-to-phpDevelopment
Convert a cURL command into a Python requests code snippet with headers, data, and method
curl-to-python