FK
FreeAIKit

Text Case Converter

Instantly convert text between UPPER CASE, lower case, Title Case, camelCase, PascalCase, snake_case, kebab-case and more. One click to copy any result.

Input Text

UPPER CASE
HELLO WORLD
lower case
hello world
Title Case
Hello World
Sentence case
Hello world
camelCase
helloWorld
PascalCase
HelloWorld
snake_case
hello_world
kebab-case
hello-world
SCREAMING_SNAKE_CASE
HELLO_WORLD

FAQ

What is camelCase?

camelCase joins words with no spaces, capitalizing the first letter of each word except the first: helloWorld, myVariableName. Widely used in JavaScript and Java.

What is snake_case?

snake_case uses underscores to separate words, all lowercase: hello_world, my_variable_name. Common in Python, Ruby, and database column names.

What is kebab-case?

kebab-case uses hyphens to separate words, all lowercase: hello-world, my-class-name. Standard for CSS class names and URL slugs.

What is PascalCase?

PascalCase (also called UpperCamelCase) capitalizes the first letter of every word: HelloWorld, MyClassName. Common for class names in most programming languages.

What is SCREAMING_SNAKE_CASE?

SCREAMING_SNAKE_CASE is snake_case in all capitals: HELLO_WORLD, MAX_RETRIES. Typically used for constants and environment variable names.

More Developer Tools You May Like