Dev / ITnew

Text Case Converter

Free online text case converter. Convert any text between camelCase, PascalCase, snake_case, kebab-case, SCREAMING_SNAKE_CASE, Title Case, Sentence case, lowercase, and UPPERCASE instantly. Perfect for developers renaming variables, functions, and database columns, or writers formatting headings. Paste your text and copy the result in any format with one click. All conversion runs 100% client-side — your text never leaves your browser.

INPUT TEXT

0 words

ALL FORMATS

camelCase
PascalCase
snake_case
kebab-case
SCREAMING_SNAKE_CASE
Title Case
Sentence case
lowercase
UPPERCASE
dot.case
path/case

ลองพิมพ์: my variable name, myVariableName, my_variable_name — แปลงได้ทุกรูปแบบครับ

how to use

  1. 1.Paste or type your text into the input field
  2. 2.All case formats are converted instantly as you type
  3. 3.Click Copy next to any format to copy it to clipboard
  4. 4.Use the input format selector if your input is already camelCase or snake_case

frequently asked

What is camelCase?

camelCase starts with a lowercase letter and capitalizes the first letter of each subsequent word, e.g. myVariableName. Commonly used in JavaScript, Java, and Swift.

What is the difference between snake_case and kebab-case?

snake_case uses underscores as separators (common in Python, Ruby, SQL). kebab-case uses hyphens (common in CSS, URLs, and HTML attributes).

What is PascalCase?

PascalCase (also called UpperCamelCase) capitalizes the first letter of every word including the first, e.g. MyClassName. Common in C#, TypeScript class names, and React components.

What is SCREAMING_SNAKE_CASE?

SCREAMING_SNAKE_CASE is snake_case in all uppercase, e.g. MAX_RETRY_COUNT. Conventionally used for constants and environment variables.