EllyTools

画像ツール

計算ツール

テキストツール

カラーツール

ファイルツール

便利ツール

大文字・小文字変換

大文字・小文字・タイトル・キャメル・スネーク形式に変換

UPPER CASE

lower case

Title Case

Sentence case

camelCase

PascalCase

snake_case

kebab-case

使い方

1

テキストを入力または貼り付け

2

大文字小文字のフォーマットを選択(大文字、小文字、タイトルケースなど)

3

変換されたテキストをクリップボードにコピー

よくある質問

関連ツール

こんな方におすすめ

  • テキストの書式を統一するライターや編集者
  • 変数の命名規則を変換するプログラマー
  • テキストの大文字小文字をすばやく変更したい方

EllyToolsが選ばれる理由

100%無料&無制限

登録不要、制限なし。何度でもお使いいただけます。

プライバシー最優先

すべての処理はブラウザ内で行われます。ファイルがデバイスの外に出ることはありません。

インストール不要

デスクトップ、タブレット、スマートフォンなど、あらゆるデバイスのブラウザで直接動作します。

高速&安定

最新のブラウザ技術による即座の結果。

Case Converter Guide: When to Use Each Case Style and Why It Matters

Case style — UPPERCASE, lowercase, Title Case, camelCase, snake_case — looks like a tiny detail, but it carries strong signals. The wrong case in the wrong place reads as unprofessional, breaks search, fails code, or makes content hard to scan. This guide covers the cases, their conventions, and where each belongs.

Every writing tradition has rules about capitalization, and they don't all agree. English book titles capitalize most words; news headlines often capitalize only the first. German capitalizes every noun. Korean has no concept of case. Programmers invented several styles (camelCase, snake_case, kebab-case) to embed structure in identifiers without spaces. The result is that 'just retyping with different capitals' isn't always trivial — there are genuine conventions to follow.

A case converter automates the mechanical part. The harder part is knowing which style to pick for which context. This guide covers the most common conventions, with practical examples of where each one is correct.

The case styles you'll meet

UPPERCASE
All letters capitalized. Used for emphasis, acronyms (NASA, USA), warning text, and shouting. Generally not for body content.
lowercase
All letters lowercase. Casual, intimate, sometimes artistic. Email addresses, URLs, hashtags.
Title Case
First Letter Of Each Major Word Capitalized. Book titles, article headlines, song titles. Several variants for handling small words ('a', 'the', 'of').
Sentence case
Only the first letter of the sentence capitalized — like normal prose. Used in product UI strings, modern blog posts, and some headline conventions.
camelCase
firstWordLowercaseRestCapitalized. JavaScript variables, function names. No spaces or punctuation.
PascalCase
EveryWordCapitalized. Class names in most languages, React components. Like camelCase but the first word is also capitalized.
snake_case
words_separated_by_underscores. Python variables, database column names.
kebab-case
words-separated-by-hyphens. URLs, CSS class names, HTML attributes.
SCREAMING_SNAKE_CASE
ALL_CAPS_WITH_UNDERSCORES. Constants in most languages (MAX_SIZE, API_KEY).
iNVERSE cASE
Inverts the case of each letter. Mostly novelty / accessibility experiments.

Where each case belongs

ContextConventionExample
English book titleTitle CaseThe Great Gatsby
Modern article headlineSentence case (often)Why your inbox is making you anxious
Newspaper headline (US)Title CaseSenate Approves New Tax Law
Email subject lineSentence caseRe: Project update for Friday
URL slugkebab-case/blog/why-naming-matters
JavaScript variablecamelCaseuserName, totalPrice
Python variablesnake_caseuser_name, total_price
React componentPascalCaseUserProfile, NavBar
CSS classkebab-case.user-profile, .nav-bar
Database columnsnake_caseuser_name, created_at
Environment variableSCREAMING_SNAKE_CASEDATABASE_URL, API_KEY
File namekebab-case or snake_caseuser-profile.tsx, user_profile.py
HashtagPascalCase or lowercase#GoodMorning or #goodmorning

Title Case is more complicated than it looks

Different style guides have slightly different rules for which words to capitalize. AP style capitalizes nouns, pronouns, verbs, and adjectives, plus articles/prepositions of four or more letters. Chicago style is similar but with subtler edge cases. APA capitalizes all words of four or more letters. The differences are small but matter for editorial work.

The most common practical rule: capitalize the first and last words always; capitalize all 'major' words in between (nouns, verbs, adjectives, adverbs); lowercase short articles ('a', 'an', 'the'), conjunctions ('and', 'but', 'or'), and prepositions of three letters or fewer ('in', 'on', 'of'). 'The Lord of the Rings' follows this rule.

Conversion tips this tool handles

  • Multi-word identifier conversion — switch between camelCase / PascalCase / snake_case / kebab-case in one click.
  • Acronym preservation — 'XMLParser' converted to snake_case stays as 'xml_parser' (not 'x_m_l_parser').
  • Sentence boundary detection — Sentence case correctly handles multiple sentences in one paste.
  • Title Case stop-word handling — small words stay lowercase unless they're the first or last word.
  • Inverse case — flip every letter for novelty effect.

Extended FAQ

Why are some apps strict about which case I use?

URLs and file paths are case-sensitive on most servers (Linux, macOS by default). 'Image.JPG' and 'image.jpg' are different files. Programming languages also enforce case-sensitivity for variable names. Be especially careful with these.

Should hashtags be #PascalCase or #lowercase?

PascalCase is recommended for accessibility — screen readers can correctly announce '#GoodMorning' as 'Good Morning' but treat '#goodmorning' as 'goodmorning' (one word). Visually both work, but accessibility wins.

What's the difference between Title Case and Headline Case?

They're often used interchangeably. Some style guides distinguish 'Title Case' (book/article titles, more capitals) from 'Sentence case' (just the first word). 'Headline case' usually refers to the news convention, which sits in between.

Does case-insensitive search ignore my case choice?

Most modern search engines (Google, site search) are case-insensitive — your query in any case matches content in any case. But programming-language string operations and database LIKE queries are case-sensitive by default.

Is the text I convert here saved or shared?

No. Conversion runs entirely in your browser; nothing is uploaded.