Strikethrough Text Generator

Cross out your text with single, double, or slash-through styles. Copy the result and paste it anywhere as plain Unicode text.

Single Strikethrough

Classic horizontal line through the middle of text

H̶e̶l̶l̶o̶ W̶o̶r̶l̶d̶

Double Strikethrough

Short centered crossbar — a subtler strikethrough variant

H̵e̵l̵l̵o̵ W̵o̵r̵l̵d̵

Slash Through

Diagonal slash through each letter — edgy and dramatic

H̸e̸l̸l̸o̸ W̸o̸r̸l̸d̸

Strike + Underline

Strikethrough plus underline — crossed out with emphasis

H̶̲e̶̲l̶̲l̶̲o̶̲ W̶̲o̶̲r̶̲l̶̲d̶̲

Strike + Overline

Strikethrough plus overline — boxed-out text effect

H̶̅e̶̅l̶̅l̶̅o̶̅ W̶̅o̶̅r̶̅l̶̅d̶̅

Bold Strikethrough

Bold text crossed out — strong visual correction

�̶�̶�̶�̶�̶�̶�̶�̶�̶�̶ �̶�̶�̶�̶�̶�̶�̶�̶�̶�̶

Italic Strikethrough

Italic text crossed out — graceful deletion

�̶�̶�̶�̶�̶�̶�̶�̶�̶�̶ �̶�̶�̶�̶�̶�̶�̶�̶�̶�̶

Dotted Strike

Strikethrough with dots below — extra decorative deletion

Ḥ̶ẹ̶ḷ̶ḷ̶ọ̶ Ẉ̶ọ̶ṛ̶ḷ̶ḍ̶

Wavy Strike

Strikethrough with wavy underline — playful error mark

H̶̰ḛ̶l̶̰l̶̰o̶̰ W̶̰o̶̰r̶̰l̶̰d̶̰

Double Slash

Slash plus horizontal line — heavily crossed out

H̸̶e̸̶l̸̶l̸̶o̸̶ W̸̶o̸̶r̸̶l̸̶d̸̶

What Is Strikethrough Text?

Strikethrough text is created by overlaying a horizontal or diagonal line across each character, producing the visual effect of text that has been crossed out, deleted, or redacted. In web development and word processors, strikethrough is typically applied with HTML tags like <del> or <s>, or with CSS text-decoration: line-through. But those approaches only work inside rich-text environments. When you need crossed-out text in a plain-text context -- a social media bio, a chat message, a forum comment -- you need Unicode combining characters.

Unicode provides three distinct combining characters that produce strikethrough effects, each with its own visual personality. U+0336 (Combining Long Stroke Overlay) draws a full-width horizontal line through the center of the character it follows. This is the classic single strikethrough that most people recognize from document editing -- a clean, authoritative deletion mark. U+0335 (Combining Short Stroke Overlay) draws a shorter centered crossbar, producing a subtler, less aggressive crossed-out appearance. U+0338 (Combining Long Solidus Overlay) draws a diagonal slash from bottom-left to top-right through each character, creating a dramatic slash-through effect reminiscent of mathematical negation symbols like the "not equal" sign.

The mechanism behind all three is the same: combining characters. In Unicode, a combining character is a code point that does not stand on its own but instead modifies the character that immediately precedes it. When a text renderer encounters the sequence "H" followed by U+0336, it draws the letter H first, then overlays a horizontal stroke through it, producing "H̶". This process repeats for every character in the input. Spaces are left untouched because a line through empty space would be visually meaningless.

What distinguishes Unicode strikethrough from platform-specific markdown shortcuts is universality. WhatsApp interprets text wrapped in tildes (~like this~) as strikethrough, and Discord uses double tildes (~~like this~~). But those are app-specific rendering rules -- paste the same tilde-wrapped text into an email or an Instagram caption and you will see raw tildes, not crossed-out text. Unicode combining characters, by contrast, are part of the text itself. The strikethrough travels with the characters wherever they go. Every platform, every browser, every operating system that supports Unicode (which is effectively all of them) will render the line overlay. This makes Unicode strikethrough the only reliable way to cross out text in contexts where you have no control over the rendering engine.

Common use cases include indicating corrections without deleting the original text, creating humorous "deleted" commentary on social media, showing price reductions (crossing out the old price), and adding dramatic emphasis. The slash-through variant is particularly popular in gaming communities and edgy aesthetic bios, while single strikethrough remains the standard for editorial and professional contexts.

How to Use the Strikethrough Generator
  1. 1
    Type or paste your text into the input field. Any characters work -- letters, numbers, punctuation, and emoji.
  2. 2
    Choose your strikethrough style -- Single for classic deletion, Double for a subtle crossbar, or Slash Through for a dramatic diagonal line.
  3. 3
    Preview the result in real time. Each character gets its own combining overlay, so the effect is visible immediately.
  4. 4
    Click the copy button on the style card you prefer. The crossed-out text is copied to your clipboard.
  5. 5
    Paste anywhere -- social media, chat apps, emails, documents, or any text field. The strikethrough effect is embedded in the text itself.
Where Strikethrough Text Works

Unicode strikethrough works on virtually every modern platform:

Instagram
Twitter / X
Facebook
Discord
Telegram
WhatsApp
TikTok bios
Reddit
LinkedIn

Tip: WhatsApp supports native strikethrough with ~tildes~ and Discord with ~~double tildes~~. But Unicode strikethrough works everywhere -- including platforms that have no built-in markdown support at all.

Strikethrough Text Examples

Correction: old price

Single: o̶l̶d̶ p̶r̶i̶c̶e̶

Double: o̵l̵d̵ p̵r̵i̵c̵e̵

Slash: o̸l̸d̸ p̸r̸i̸c̸e̸

Emphasis: totally wrong

Single: t̶o̶t̶a̶l̶l̶y̶ w̶r̶o̶n̶g̶

Double: t̵o̵t̵a̵l̵l̵y̵ w̵r̵o̵n̵g̵

Slash: t̸o̸t̸a̸l̸l̸y̸ w̸r̸o̸n̸g̸

Humor: bad idea

Single: b̶a̶d̶ i̶d̶e̶a̶

Double: b̵a̵d̵ i̵d̵e̵a̵

Slash: b̸a̸d̸ i̸d̸e̸a̸

Frequently Asked Questions

How does strikethrough work without HTML?

Unicode provides combining characters -- invisible code points that attach to the preceding character and instruct the renderer to draw a line through it. U+0336 draws a horizontal stroke, U+0335 draws a short crossbar, and U+0338 draws a diagonal slash. These are part of the text itself, not formatting, so they work everywhere.

What is the difference between WhatsApp/Discord native strikethrough and Unicode strikethrough?

WhatsApp and Discord use markdown-style syntax (~tildes~ and ~~double tildes~~) that their apps interpret and render as strikethrough. If you paste that syntax into a platform that does not support it, you see raw tildes. Unicode strikethrough uses combining characters embedded in the text, so the crossed-out appearance works on every platform regardless of markdown support.

Where does Unicode strikethrough text work?

Everywhere that supports Unicode, which is effectively every modern platform: Instagram, Twitter/X, Facebook, Discord, Telegram, WhatsApp, Reddit, LinkedIn, TikTok, YouTube comments, email clients, and even plain-text editors like Notepad.

Can I combine strikethrough with underline?

Yes. Unicode combining characters can be stacked on the same base character. You can apply both the strikethrough combining character (U+0336) and the underline combining character (U+0332) to produce text that is simultaneously crossed out and underlined. Our main Underline Text Generator can create these combined effects.

What is the difference between single and double strikethrough?

Single strikethrough (U+0336) produces a full-width horizontal line through each character -- the standard crossed-out look. Double strikethrough (U+0335) is actually a short stroke overlay that appears as a smaller, subtler crossbar. Slash through (U+0338) draws a diagonal line, giving each character a negation-symbol appearance. The choice depends on visual weight and context.

Privacy: All text processing happens entirely in your browser. No text is sent to any server, stored, or logged. Your input stays on your device.

Related Text Tools
Underline Generator

Add underlines to text with 30+ styles.

Bold Text Generator

Generate bold Unicode text in multiple styles.

Strikethrough Text Guide

Learn about strikethrough across platforms.

Why Underline Looks Broken

Understand Unicode combining character rendering.