Convertidor de Mayúsculas de Texto Gratuito
Paste your text and convert it to any case format with a single click — UPPER CASE, lower case, Title Case, Sentence case, camelCase, PascalCase, snake_case, or kebab-case.
Covers all common formats: UPPER, lower, Title, Sentence, camelCase, PascalCase, snake_case, and kebab-case.
Click any format button and the result appears immediately — no page reloads, no waiting.
Copy the converted text straight to your clipboard and paste it into your code editor, document, or app.
Frequently asked questions
What is camelCase?
camelCase writes compound words without spaces, capitalizing each word except the first — e.g., myVariableName. It is widely used in JavaScript and Java.
What is the difference between snake_case and kebab-case?
snake_case uses underscores as separators (my_variable) and is common in Python and databases. kebab-case uses hyphens (my-variable) and is common in URLs and CSS.
Does it handle punctuation?
For developer formats (camel, pascal, snake, kebab), punctuation and special characters are stripped to produce valid identifiers. For text formats (UPPER, lower, Title, Sentence), punctuation is preserved.