WikiPlus

Conversor de Mayúsculas

Convierte texto entre mayúsculas, minúsculas, tipo título y más. 100% gratis, funciona en tu navegador.

Procesamiento local
1.4s promedio
4.8 de 5 — basado en 1,247 usos

Por Sergio Robles — Fundador

Tus archivos se procesan localmente en tu navegador. Nunca subimos ni almacenamos tus datos.

¿Qué es Conversor de Mayúsculas?

El Case Converter cambia texto entre muchos estilos. Cubre UPPER, lower, Title, Sentence, camelCase, PascalCase, snake_case, kebab-case y CONSTANT_CASE. Los escritores corrigen titulos que llegaron en mayusculas. Los devs renombran variables entre estilos de codigo. Los marketers ajustan texto de botones a Title Case. Los profesores dan formato a notas de clase para lectores de pantalla. Maneja Unicode de forma correcta. La ene espanola se convierte en N mayuscula. El eszett aleman se convierte en SS en mayusculas. La I turca sin punto se distingue de la I con punto. La sigma griega toma su forma de fin de palabra donde corresponde. Todo el trabajo corre en tu dispositivo. Ningun texto o codigo sale de tu navegador.

¿Cuándo debo usar esta herramienta?

  • Normaliza encabezados desordenados de CSV antes de importarlos a una base de datos
  • Renombra rápidamente variables de JavaScript de snake_case a camelCase
  • Arregla texto en mayúsculas pegado desde PDF o correos
  • Genera encabezados en Title Case para entradas de blog y capítulos de libros

¿Cómo convertir texto entre diferentes formatos de mayúsculas?

  1. 1Pega el texto que quieres reformatear en el área de entrada.
  2. 2Haz clic en el formato que necesitas, como UPPERCASE o camelCase.
  3. 3Revisa el resultado convertido en el panel de salida.
  4. 4Copia el nuevo texto a tu portapapeles con un solo clic.
  5. 5Usa Limpiar para resetear ambos campos antes de una nueva conversión.

Preguntas frecuentes

¿Qué formatos de mayúsculas y minúsculas soporta el conversor?

The converter handles twelve distinct case formats that cover the full range of writing and coding conventions. The formats are: lowercase, where every character is small; UPPERCASE, where every character is capital; Title Case, where the first letter of each significant word is capitalized following AP or Chicago rules; Sentence case, where only the first letter of each sentence is capitalized; camelCase, where words merge and each internal word starts with a capital letter; PascalCase, the same as camelCase but the first word also capitalizes; snake_case, where spaces become underscores and all letters stay lowercase; kebab-case, where spaces become hyphens and all letters stay lowercase; CONSTANT_CASE, where underscores replace spaces and all letters capitalize; dot.case, where spaces become periods; path/case, where spaces become forward slashes; and inverted tOgGlE case, where each letter alternates between upper and lower. Paste any amount of text, click the case button you need, and the result is placed in the output panel ready to copy. All processing runs in JavaScript on your device. No text leaves your browser, there is no account required, and there is no rate limit on conversions. Practical tip: camelCase and PascalCase are the two most commonly confused formats in codebases. Use camelCase for variables and functions in JavaScript and Java, and PascalCase for class names and React component names in the same languages.

¿Cuándo debo usar camelCase, snake_case o kebab-case?

Each convention belongs to a specific ecosystem, and following those conventions is more important than personal preference when working in a team. Use camelCase for variable names, function names, and object property keys in JavaScript, TypeScript, Java, Kotlin, Swift, and C-family languages. Examples are userName, calculateTotal, and fetchUserProfile. Use PascalCase for class names, constructor functions, React components, and TypeScript interface names in the same languages — for instance, UserProfile, ShoppingCart, or DatabaseConnection. Use snake_case for variable names, function names, and column names in Python, Ruby, Rust, Go, and SQL. Examples are user_name, calculate_total, and created_at. Python's PEP 8 and Rust's RFC 430 both mandate snake_case explicitly. Use kebab-case for URL paths, CSS class names, HTML data attributes, and command-line flags. Examples are /user-profile/, .card-header, data-user-id, and --verbose-mode. CSS methodologies like BEM and SMACSS use kebab-case by convention. Use CONSTANT_CASE, also called SCREAMING_SNAKE_CASE, for values that should never be reassigned at runtime, such as MAX_RETRIES, API_BASE_URL, or DEFAULT_TIMEOUT_MS. This signals to every reader that the value is fixed. Mixing conventions inside a single codebase creates reading friction and makes grep-based searches unreliable. Practical tip: run the converter when you receive data from an external API in snake_case and need to integrate it into a camelCase JavaScript codebase — paste the key names, convert, and copy in seconds.

¿Cómo maneja el conversor acentos, emojis y caracteres especiales?

Accented Latin characters are handled correctly during case conversion because they have defined uppercase and lowercase forms in Unicode. The letter é becomes É when uppercased. The letter ñ becomes Ñ. The letter ü becomes Ü. The letter ß becomes SS in uppercase, following German orthographic rules, because there is no single-character uppercase eszett in the Unicode standard below U+1E9E, which is not yet universally supported. This matches the behavior of word processors and style guides. Emojis have no case distinction, so they pass through any conversion unchanged. Numbers and standard punctuation marks also pass through unchanged, since they are caseless characters. For programming-style conversions — camelCase, snake_case, kebab-case, CONSTANT_CASE, and similar — the tool strips punctuation characters and merges runs of spaces before building the word-boundary structure. This is necessary because code identifiers cannot contain spaces, commas, or most special characters. If you want to preserve punctuation during a code-style conversion, such as when building document IDs or anchor tags from sentence text, toggle off the 'strip non-alphanumeric' option. The converter will then treat only whitespace as a word boundary and leave punctuation in place. Practical tip: when converting CSV column headers from 'First Name, Last Name, Email Address' into camelCase database field names, paste the header row directly and convert in one step rather than editing each field manually.

¿Hay un límite de cuánto texto puedo convertir?

There is no explicit character or word limit imposed by the tool. The practical ceiling is determined by your browser's memory budget for the textarea element, which on a modern laptop or desktop is typically in the range of 8 to 12 megabytes of text per active tab. At average English word length of five characters plus a space, that corresponds to roughly 1.3 to 2 million words — far more than any document that would realistically be case-converted in a single pass. Case conversion is one of the most computationally inexpensive text operations possible. Each character requires a single Unicode code-point lookup, which modern JavaScript engines execute at tens of millions of characters per second. A 500-page document of approximately 150,000 words converts in under 50 milliseconds on typical hardware. For programming-style conversions that involve splitting, stripping, and rejoining, the processing time is slightly higher but still imperceptible on documents below 50,000 words. If you are working with server log files, database export dumps, or other data at gigabyte scale, a browser-based tool is not the right choice regardless of case conversion. For those volumes, use a sed one-liner, an awk script, or a Python str.lower() call on the file directly. Practical tip: when batch-renaming a large set of database column headers or configuration keys, paste all of them at once separated by newlines, convert in one pass, and copy the entire block — faster than converting column by column.

El contenido de esta pagina esta disponible bajo CC BY 4.0.