RashHerramientas

    Lanzar una Moneda

    ¿Cara o cruz? Un lanzamiento de moneda gratuito, justo e instantáneo.

    👤
    Cara
    🦅
    Cruz

    Verdaderamente aleatorio

    50/50 justo usando la aleatoriedad de calidad criptográfica de tu navegador

    Seguimiento de resultados

    Estadísticas en vivo de caras vs cruces durante tu sesión

    Instantáneo y gratis

    Sin registro, sin anuncios molestos, solo lanzar

    Utilidades prácticas para creadores y profesionales

    Códigos QR, contraseñas, colores, hashtags, temporizadores y más: pequeñas herramientas que ahorran tiempo de verdad.

    Genera lo que necesites en segundos

    Crea códigos QR, contraseñas seguras, hashtags y correos electrónicos con un solo clic. Resultados limpios, listos para copiar, compartir o escanear.

    Prueba esta herramienta
    Genera lo que necesites en segundos

    Elige colores, cuenta palabras, combina fuentes

    Ayudas de diseño y escritura creadas para el trabajo real, desde obtener el valor hexadecimal exacto de un color hasta contar palabras en un borrador.

    Abrir Generador de hashtags
    Elige colores, cuenta palabras, combina fuentes

    Diversión y productividad en un solo kit de herramientas

    Temporizadores, cronómetros, lanzamientos de moneda y tiradas de dados para aulas, entrenamientos, reuniones y noches de juegos, sin necesidad de descargar nada.

    Abrir Grabador de pantalla
    Diversión y productividad en un solo kit de herramientas

    Guía paso a paso

    ¿Cómo usar Lanzar una Moneda?

    Lanza una moneda virtual con animación realista: cara o cruz, decidido en segundos.

    Instrucciones paso a paso

    1. 1

      Haz clic en la moneda para lanzarla.

    2. 2

      Observa la animación.

    3. 3

      Consulta el resultado de cara o cruz.

    4. 4

      Lanza de nuevo o revisa tu historial de lanzamientos.

    Beneficios

    • Animación 3D de lanzamiento realista.
    • Resultado verdaderamente aleatorio cada vez.
    • Modo de lanzamiento múltiple para diversión estadística.
    • Gratis y sin descarga.

    ¿Para quién es?

    • Cualquiera tomando una decisión rápida
    • Maestros realizando actividades en el aula
    • Árbitros deportivos eligiendo lados

    FAQ

    Preguntas frecuentes

    Open the site in any modern browser, then click the blue "Flip" button in the center of the page or press Space/Enter to start a flip; the coin animation runs for ~1.2 seconds and the result (Heads or Tails) appears in the large result panel. For multiple flips use the "Flip 10" quick button or the batch input field labeled "Flip N" (type a number then press "Flip"). Toggle sound with the speaker icon and view recent results by clicking "History"; no signup or account is required and everything happens in your browser.

    Yes — you can export a single visual result as a PNG snapshot (.png) using the "Download PNG" button, or create an animated short showing multiple flips as an animated GIF (.gif) with "Download GIF". Numerical results and timestamps export via "Export CSV" (.csv) or "Export JSON" (.json); CSV files are UTF-8 and named like flips_20260710_1532.csv. Typical sizes: a single PNG is usually 50–250 KB, a 10-flip GIF is 200–800 KB; very long GIFs (>200 frames) are not recommended due to CPU and memory on mobile devices.

    On modern browsers we use window.crypto.getRandomValues (Web Crypto API) to generate unbiased, cryptographically-strong random bits for each flip; if the browser lacks Web Crypto (very old browsers) we fall back to Math.random, which is less robust. There is no seeding option or reproducible sequence — every flip is independent and results are not stored on a server by default. If you need deterministic or reproducible sequences for testing, use a local script (Python or Node) instead, as this tool does not support custom seeds.

    Use the batch control labeled "Flip N" to request up to 1,000 flips in a single operation; the default quick option is "Flip 10". The UI will animate the first few flips and then summarize counts (Heads/Tails) — very large batches are throttled to prevent browser freezing, and the tool may pause if the tab goes into the background (browser throttling). Exporting a large batch will produce a CSV or JSON containing each flip with an ISO-8601 timestamp, but the site caps stored history at the most recent 5,000 entries to avoid exceeding localStorage limits.

    No signup is required: by default history is stored only in your browser's localStorage and is limited to the most recent 5,000 flip records to stay within typical 5 MB storage quotas. You can clear this local history immediately with the "Clear History" button, and you can export history via "Export CSV" or "Export JSON" before clearing; those exports are generated client-side and downloaded directly to your computer. We also include an optional analytics cookie (toggleable via "Disable Analytics" in the footer) that tracks page usage in aggregate, but it does not contain your flip results.

    There are several common causes: iOS Safari and some browsers honor the operating system "Reduce Motion" or prefers-reduced-motion preference which will disable the spin animation; you can change that in iOS Settings → Accessibility → Motion. Audio may be blocked in background tabs or by browser autoplay policies if no recognizable user gesture was detected; ensure you press the "Flip" button directly rather than relying on remote script triggers. Also note the Vibration API is not supported on iOS Safari; Android Chrome supports vibration on user-initiated flips.

    First confirm JavaScript is enabled in your browser — the tool is entirely client-side and requires JS. If JS is enabled, try clearing cache and hard-reloading (Ctrl/Cmd+Shift+R) or disabling extensions like ad blockers/privacy plugins that can block scripts or fonts; corporate CSP policies can also block embedded assets and produce a blank area. If you still have trouble, check the browser console (F12 → Console) for errors like "Blocked script" or "getRandomValues is not a function" and switch to a modern browser such as Chrome, Firefox, or Edge for best compatibility.

    The History panel shows each flip as an entry with a zero-based index, result (Heads/Tails), and an ISO-8601 timestamp in your local time zone; you can add an optional label per flip before export. Click "Export CSV" to download a UTF-8 CSV with headers (index,result,timestamp,label) named flips_YYYYMMDD_HHMM.csv, or choose "Export JSON" to get a .json array of objects. Export respects the 5,000-entry storage cap: if you have more than 5,000 flips in a session the CSV/JSON contains the most recent 5,000 entries only.

    Yes — press Space or Enter to trigger a flip, press "H" to open the History panel, and press "C" to clear history; all interactive controls have visible focus styles and ARIA labels for screen readers. The site respects prefers-reduced-motion and will present a static result instead of an animation when that preference is set. For users who need higher contrast there's a "High Contrast" toggle in the Theme menu that increases color contrast for the coin and result text.

    There is no public REST API for flips, but you can embed the flipper UI via an iframe using the provided embed code snippet on the "Embed" page; we recommend an iframe size of 360×480 pixels for best layout. Embedded instances run client-side like the main site, so they do not share flip history with the parent page due to cross-origin protections; postMessage is not currently supported for flip-result callbacks. For programmatic needs use a local script that calls window.crypto.getRandomValues to reproduce the same quality of randomness client-side.

    This web tool is optimized for quick, interactive decisions and uses the browser's Web Crypto API where available, which is generally stronger than Excel's RAND() and is comparable to calling /dev/urandom or crypto libraries in desktop environments. For large-scale or reproducible experiments you should use command-line tools (Python's secrets module, OpenSSL, or Node's crypto) where you can control seeds, performance, and output format. The trade-off is convenience: the online flipper is immediate and UI-driven with export buttons, while desktop/CLI tools are more suitable for automation and reproducibility.

    The core tool is free to use in-browser with no signup and no watermark on exports; there is an optional donation link in the footer but no subscription or premium tier. Practical limits include the 1,000-flip maximum per batch operation, a 5,000-entry local history cap (due to localStorage size constraints), and a recommendation to keep exported GIFs under ~200 frames for performance reasons. Browser download limits are effectively determined by your browser and OS (browsers commonly handle multi-hundred-megabyte downloads, but animated GIFs from this tool are designed to stay under a few megabytes).

    Acerca de esta herramienta

    Lanza una moneda online — cara o cruz justa e instantánea

    A veces, la forma más sencilla de zanjar un debate, elegir quién paga el almuerzo o tomar una decisión difícil al 50/50 es dejar que el azar decida. Nuestro lanzador de monedas online te ofrece un lanzamiento animado y satisfactorio con una probabilidad real del 50% para cara y cruz — sin monedas físicas sesgadas, sin preocuparte por la técnica de lanzar con el pulgar, solo un lanzamiento digital limpio en tu navegador.

    Detrás de la bonita animación giratoria está el generador de números aleatorios integrado de tu navegador, que produce un resultado nuevo en cada lanzamiento. Toca la moneda y verás una suave rotación 3D seguida del resultado. Hacemos un seguimiento de las estadísticas — lanzamientos totales, porcentaje de caras vs. cruces y los últimos doce resultados — para que puedas ver cómo la ley de los grandes números se manifiesta en tiempo real. Reinicia cuando quieras para comenzar una nueva sesión.