← 홈

🔤 대소문자 변환기

한 번에 변환하세요.

이 도구란?

A case converter is a tool that instantly transforms text between different capitalization styles: lowercase, UPPERCASE, Title Case, Sentence case, camelCase, PascalCase, snake_case, and more. Whether you are formatting a headline, cleaning up data imported from another source, preparing code identifiers, or standardizing names in a spreadsheet, a case converter saves time and eliminates the tedium of retyping. Manually re-capitalizing paragraphs of text is error-prone and frustrating, especially when the source content was written in all caps or all lowercase. This tool handles each transformation according to established rules so the output is consistent every time. Title Case follows style guide conventions that capitalize major words while lowercasing articles, conjunctions, and short prepositions. Sentence case capitalizes only the first letter of each sentence. Programming naming conventions like camelCase and snake_case have strict rules about letter casing and word separation that are tedious to apply by hand. For developers, marketers, students, and data analysts, a reliable case converter is a daily productivity tool that ensures consistency across documents, codebases, and databases.

계산 원리

Case conversion applies defined rules to each character. UPPERCASE converts every letter to its capital form (a→A, z→Z). lowercase does the reverse. Title Case capitalizes the first letter of each word while lowercasing the rest, skipping minor words such as articles (a, an, the), coordinating conjunctions (and, but, or), and short prepositions (in, on, at, to). Sentence case capitalizes only the first letter after a period, exclamation mark, or question mark. camelCase lowercases the first word and capitalizes each subsequent word with no separator (helloWorld). PascalCase capitalizes every word with no separator (HelloWorld). snake_case joins words with underscores in lowercase (hello_world). kebab-case uses hyphens (hello-world). These rules are applied character by character across the entire input string.
Ad

사용 방법

Using the case converter is quick and intuitive. Step 1: Paste or type your text into the input area. Step 2: Click the button for your desired case style — for example, UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, or kebab-case. Step 3: The converted text appears instantly in the output area. Step 4: Click the copy button to copy the result to your clipboard, ready to paste into your document, code editor, or spreadsheet. You can switch between case styles without re-entering text — each conversion works from the original input. This is especially useful when you need to experiment with different formats for a headline, variable name, or dataset field before committing to the final style.

참조 표

Case StyleExample Input: "hello world"Common Use
UPPERCASEHELLO WORLDHeadlines, emphasis, warnings
lowercasehello worldCasual text, URLs
Title CaseHello WorldBook titles, headlines
Sentence caseHello worldSentences, descriptions
camelCasehelloWorldJavaScript variables, functions
PascalCaseHelloWorldC# classes, React components
snake_casehello_worldPython, Ruby, database fields
kebab-casehello-worldURLs, CSS classes, file names

자주 묻는 질문

Frequently Asked Questions

How are proper nouns handled in Title Case?
Proper nouns — including names of people, places, brands, and organizations — should always retain their original capitalization regardless of the case style applied. For example, "iPhone" should stay "iPhone" in Title Case, and "McDonald's" should not become "Mcdonald's." Our converter handles standard words, but always proofread for brand names and technical terms that have unusual capitalization.

What is the difference between Sentence case and Title Case?
Sentence case capitalizes only the first letter of each sentence and proper nouns, producing natural reading text. Title Case capitalizes the first letter of every major word, which is used for headlines, book titles, and article titles. For example, "The quick brown fox" in Sentence case stays as is, while in Title Case it becomes "The Quick Brown Fox." Most style guides lowercase articles, conjunctions, and short prepositions in Title Case.

Which naming convention should I use for programming?
It depends on the language and context. JavaScript and Java commonly use camelCase for variables and functions (userName, getTotalPrice). Python and Ruby prefer snake_case for variables and functions (user_name, get_total_price). C# and Pascal use PascalCase for classes and methods (UserAccount, CalculateTotal). React components use PascalCase. Always follow your project or team's style guide for consistency, as mixed conventions make code harder to read.

What is CONSTANT_CASE and when is it used?
CONSTANT_CASE (also called SCREAMING_SNAKE_CASE) uses all uppercase letters with underscores separating words, such as MAX_CONNECTIONS or DEFAULT_TIMEOUT. It is the standard convention for constants in most programming languages, signaling to developers that the value should not be modified.

팁과 조언

When converting text for headlines or titles, always review the output for proper nouns, acronyms, and brand names that have non-standard capitalization. Most converters cannot distinguish between a regular word and a brand like "iPad" or "McDonald's," so manual review is essential for polished, professional results. For programming, commit to a single naming convention per project — mixing camelCase and snake_case in the same codebase creates confusion and maintenance headaches. Use your editor's built-in refactoring tools alongside a case converter when renaming variables or functions across a codebase. When cleaning imported data, run the case converter first to normalize everything to lowercase, then apply proper capitalization to names and titles to ensure database consistency. For SEO, Title Case in headline tags and meta titles can improve click-through rates on search results pages, but test different formats to see what resonates with your audience.

Ad