Loading tool…

What this tool does

Frequently asked questions

What's the difference between Title Case and Sentence case?

Title Case capitalizes every major word (How to Write Good Code). Sentence case capitalizes only the first word and proper nouns (How to write good code). This tool does both.

When should I use camelCase vs snake_case?

JavaScript/Java/C#: camelCase for variables. Python/Ruby: snake_case. Files/URLs: kebab-case. SQL/environment vars: UPPER_SNAKE. CSS classes: kebab-case. Follow your language/project convention.

Does this handle special characters (accents, emojis)?

Yes, preserves Unicode characters. Accented characters are case-converted correctly (é → É). Emojis and symbols stay unchanged.

Is there a bulk conversion mode?

Paste any length text — the whole thing converts at once. For multi-file batch conversion, use a CLI tool or script. This tool handles single-text-blob conversion.