Aa

大小写转换

转换各种文本格式

🔒 100% client-side — your data never leaves this page
输入
输出

About this tool

在各种常用命名格式间转换文本,适合开发者格式化变量名和函数名。

Frequently Asked Questions

What is camelCase?

camelCase starts with a lowercase letter and capitalizes the first letter of each subsequent word: helloWorld. It is widely used in JavaScript and Java variable names.

What is snake_case?

snake_case uses underscores between words and all lowercase letters: hello_world. It is common in Python, Ruby, and database column names.

What is kebab-case?

kebab-case uses hyphens between words: hello-world. It is commonly used in URLs, CSS class names, and HTML attributes.