대소문자 변환기

텍스트 대소문자 변환

입력 텍스트

0자 · 0단어 · 0줄
대문자
0
소문자
0
숫자
0
특수문자
0

출력 텍스트

변환 결과가 여기에 표시됩니다...
Convert all letters to uppercase

변환 옵션

유용한 팁

  • JavaScript/TypeScript 변수명에는 camelCase를 사용하세요
  • React 컴포넌트 이름과 클래스에는 PascalCase를 사용하세요
  • Python 변수 및 함수에는 snake_case를 사용하세요
  • CSS 클래스와 URL 슬러그에는 kebab-case를 사용하세요
  • 환경 변수와 상수에는 CONSTANT_CASE를 사용하세요

About the Text Case Converter

The Text Case Converter fixes a small but constant annoyance: text that's in the wrong case for where it needs to go. A headline pasted in from a spreadsheet is stuck in all caps, a variable name copied from documentation uses spaces instead of camelCase, or a CSV column header needs to become a snake_case database field. Retyping or manually reformatting each one is slow and error-prone, especially across long documents or lists of identifiers, so this tool converts pasted text into the exact case format you need in one pass.

Paste your text into the input box and choose a target format — UPPERCASE, lowercase, Title Case, camelCase, snake_case, and other common conventions are all supported as one-click conversions. The tool re-parses word boundaries from your original text (spaces, punctuation, and existing capitalization patterns) so it can rebuild proper camelCase or snake_case output rather than just flipping letter case, which matters when you're converting phrases into code-safe identifiers. Because everything runs client-side in your browser, the conversion is instant and there's no upload step or account needed.

This makes it handy for developers renaming variables between naming conventions, writers cleaning up inconsistently capitalized headings, or anyone standardizing text pulled from different sources before pasting it somewhere else. Since processing happens locally, none of your text is sent to a server, which is useful if you're working with internal code, draft content, or anything you'd rather not paste into a cloud service.

How to convert text case

Paste text and instantly convert it to your target case format.

  1. 1

    Paste your text

    Copy the text you want to convert and paste it into the input field.

  2. 2

    Choose a case format

    Select the target format you need, such as UPPERCASE, lowercase, Title Case, camelCase, or snake_case.

  3. 3

    Review the converted output

    The tool instantly rewrites your text into the selected case format in the output area.

  4. 4

    Copy the result

    Copy the converted text and paste it into your document, code editor, or spreadsheet.

  5. 5

    Try another format if needed

    Switch to a different case option any time to reconvert the same input without re-pasting.

Frequently Asked Questions

What text case formats are supported?

Our case converter supports UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, and CONSTANT_CASE. Each format has its own use cases in writing and programming.

What is camelCase used for?

camelCase (e.g., myVariableName) is the standard naming convention for variables and functions in JavaScript, Java, and many other programming languages. The first word is lowercase and each subsequent word starts with an uppercase letter.

What is the difference between Title Case and Sentence case?

Title Case capitalizes the first letter of every major word (e.g., "The Quick Brown Fox"), while Sentence case only capitalizes the first word and proper nouns (e.g., "The quick brown fox"). Title Case is used for headings; Sentence case for normal prose.