All Translators

Browse and discover creative translators from our community.

Normal Language
"Display a greeting message on the screen."
Code
"print('Hello, World!')"
Normal Language
"Create a function that takes two numbers as arguments and returns their sum."
Code To English
"function add(a, b) { return a + b; }"
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 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
"Create a scatter plot of the 'mpg' and 'wt' variables in the 'mtcars' dataset, adding a title and labels to the axes."
R
"plot(mtcars$mpg, mtcars$wt, main="Scatter Plot of MPG vs. Weight", xlab="Miles Per Gallon", ylab="Weight (1000 lbs)")"
Normal Language
"Create a function that takes two numbers as input and returns their sum."
Coding
"function add(a, b) { return a + b; }"
Normal Language
"Hello world, this is a sample translation example."
Bf
"++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++."
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
"The program initializes a variable and then checks a condition."
Javanese Java
"Sang program ngawit variabel lan banjur mriksa kahanan."
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 user needs to enter data into the program."
Cod
"user.input(data).program"
Normal Language
"Move the sprite 10 steps to the right"
Scratch Code
"moveSprite(x, 10)"
Code English
"function isWithinRange(num, min, max)"
English
"is the number within the minimum and maximum values?"
Normal Language
"Hello, world!"
coding characters script
"こんにちは、世界!"
Detected programming language
"int x = 5;"
Normal language
"A variable named `x` is assigned the value of 5."