All Translators

Browse and discover creative translators from our community.

Normal Language
"The cat sat on the mat."
Cybertronian
"FELINE-FORMED ENTITY STATIONARY UPON RECTANGULAR TEXTILE."
Normal Language
"Print the current date and time to the console."
Roblox Lua
"local currentDate = os.date('%Y-%m-%d %H:%M:%S') print(currentDate)"
Normal Language
"Give diamond sword to Alex"
Minecraft Command
"/give @p minecraft:diamond_sword 1"
Normal Language
"Click here to learn more."
Rickroll Link Gen
"Click here to Rickroll yourself! [link to Rick Astley's Never Gonna Give You Up](https://www.youtube.com/watch?v=dQw4w9WgXcQ)"
Normal Language
"Add two numbers and display the sum."
C Coding
"#include <stdio.h> int main() { int num1, num2, sum; printf("Enter two numbers: "); scanf("%d %d", &num1, &num2); sum = num1 + num2; printf("Sum: %d\n", sum); return 0; }"
Normal Language
"Make a part fall down."
Roblox Game Code
"local part = workspace.PartName -- Replace PartName with the actual part's name part.Anchored = false local velocity = Vector3.new(0, -50, 0) -- Adjust the Y component to control fall speed part.Velocity = velocity"
Normal Language
"Make a square that is 10 studs wide on the screen."
Roblox Code
"local square = Instance.new("Part") square.Anchored = true square.Size = Vector3.new(10, 1, 1) square.Position = Vector3.new(0, 5, 0)"
Normal Language
"Add 5 and 3 and display the result on the screen."
Javascript
"let result = 5 + 3; console.log(result);"
Normal Language
"<div class="container"> <h1>Welcome</h1> <p>This is a sample paragraph.</p> <ul> <li>List item 1</li> <li>List item 2</li> </ul> </div>"
Pug Html File
"div.container h1 Welcome p This is a sample paragraph. ul li List item 1 li List item 2"
Normal Language
"Create a function that adds two numbers and returns the result."
English Code
"function add(x, y) { return x + y; }"
Normal Language
"Print the sum of 10 and 20 to the console."
Coding Language
"console.log(10 + 20);"
Normal Language
"Create a program that adds two numbers and displays the result."
Ai Coding
"def add_numbers(a, b): return a + b print(add_numbers(5, 3))"
Normal Language
"Please calculate the area of a circle with radius 5."
Javascript Translator 2
"const area = (r) => Math.PI * (r * r); const result = area(5); console.log(result);"
Normal Language
"The large, fluffy white cat sat quietly on the windowsill."
Thing
"Fluffy-White-Cat-Sit-Windowsill."
Normal Language
"The user needs to enter data into the program."
Cod
"user.input(data).program"
Normal Language
"The meeting was productive, and everyone contributed valuable insights."
Opthomas Prime
"Meeting productive. All participants contributed relevant insights."
Normal Command Generator
"Create a simple button with the text "Submit""
Html code converter generator
"<button>Submit</button>"
Normal Language
"Create a scatter plot of 'age' versus 'income' for the dataset."
h2o
"h2o.plot.scatter(data=df, x='age', y='income')"
Normal Language
"Hello"
Polish + Indonesian + Turkish?
"Siema"
Normal Language
"Create a new article about the history of the French revolution"
Full Wikipedia Source Code
"<doc> <page> <title>History of the French Revolution</title> <body> ... </body> </page> </doc>"
Normal Language
"Display 'Hello, world!'"
Java Script
"console.log("Hello, world!");"
Normal Language
"Update the '{{Infobox}}' template with a new parameter for 'construction date'"
Wikipedia code source
"{{Infobox|construction_date=2024-02-24}}"
Text
"A button that, when clicked, updates the counter to increase by one"
Code react 6385638965 characters
"<Button onClick={() => setCounter(counter + 1)}>Click me</Button>"
English
"Create a text file in the C:\Users\user folder with the content "Hello, World!""
Python script
"import os folder_path = "C:\Users\user" file_name = "my_file.txt" file_path = os.path.join(folder_path, file_name) if not os.path.exists(folder_path): os.makedirs(folder_path) with open(file_path, 'w') as f: f.write("Hello, World!")"
Normal Language
"List all files in the current directory."
Code
"ls -l"