Is entered text uploaded or stored?
No. Editing and all twelve conversions happen in your browser. The Case Converter does not send the text to a TextCraftHub server or add persistent history, cloud storage, or account storage.
What is the difference between Title Case and Sentence case?
Title Case capitalizes eligible title words and keeps documented small words lowercase in common positions. Sentence case lowercases ordinary cased text and capitalizes the beginning of detected sentences. Both use documented heuristics rather than complete grammatical analysis.
What is camelCase?
camelCase joins identifier words without separators, keeps the first word lowercase, and capitalizes each later word, as in caseConverterResult.
What is PascalCase?
PascalCase joins identifier words without separators and capitalizes every word, as in CaseConverterResult. It is often used for type, class, and component names.
What is snake_case?
snake_case joins normalized lowercase words with underscores. It is commonly used for variables, database fields, filenames, and configuration keys depending on a project's conventions.
What is kebab-case?
kebab-case joins normalized lowercase words with hyphens. It is widely used in URLs, CSS class names, package names, and filenames, although each system can impose additional rules.
What is CONSTANT_CASE?
CONSTANT_CASE joins uppercase words with underscores. It is a naming convention often used for constants and environment variables, not a Unicode standard.
Does Case Converter work with Unicode?
Yes. It uses JavaScript's Unicode-aware casing and Unicode property-based tokenization. Accented Latin, Greek, Cyrillic, combining marks, and uncased scripts are preserved according to the documented rules.
Why do some letters change length when converted?
Unicode case mappings are not always one character to one character. For example, the default uppercase mapping of German sharp s can expand to SS, so a converted result can contain a different number of code points or UTF-16 units.
Will emoji or Hindi text be changed?
Emoji and Hindi characters do not have uppercase/lowercase mappings, so writing transformations generally leave them unchanged. Developer formats keep Hindi word tokens but use separators or joins according to the selected naming convention; emoji acts as a separator there.
Does Title Case follow AP or Chicago style?
No. TextCraftHub uses a documented English small-word heuristic. It does not claim complete compatibility with AP, Chicago, MLA, or another editorial style guide.
Can it preserve acronyms such as API, NASA, or HTML?
Title Case and Sentence case preserve source-uppercase entries from the built-in acronym list: API, HTML, CSS, JSON, XML, HTTP, HTTPS, URL, URI, SQL, NASA, SEO, AI, UI, UX, PDF, CSV, USB. The list is intentionally small, mixed-case spellings are not promoted, and unlisted uppercase prose is normalized. Developer cases always normalize acronym tokens.
How is punctuation handled?
Writing cases retain punctuation and spacing. Sentence case uses a fixed conservative abbreviation list and best-effort sentence endings. Developer cases treat punctuation, symbols, whitespace, and emoji as token separators while preserving physical line endings.
Can large text be converted?
Yes, up to 100,000 Unicode code points. Cards show a grapheme-safe preview for large results, Show full result can reveal one complete output at a time, and Copy always uses the complete in-memory result.