케이스 변환기
camelCase, PascalCase, snake_case, kebab-case 등 간에 텍스트를 변환합니다.
Examples:
lowercase: hello world
UPPERCASE: HELLO WORLD
Title Case: Hello World
Sentence case: Hello world.
camelCase: helloWorld
PascalCase: HelloWorld
snake_case: hello_world
kebab-case: hello-world
CONSTANT_CASE: HELLO_WORLD
dot.case: hello.world
Case Converter - 기술 세부 정보
Different programming languages and frameworks have different naming conventions. camelCase is common in JavaScript, snake_case in Python, PascalCase for classes, and kebab-case for CSS and URLs.
명령줄 대안
# No standard terminal command, but in Bash:\n# UPPERCASE\necho 'hello' | tr '[:lower:]' '[:upper:]'\n\n# lowercase\necho 'HELLO' | tr '[:upper:]' '[:lower:]'