Strikethrough Text Generator
Waiting for text input...
Settings
Strikethrough Text Generator
The Strikethrough Text Generator is an online layout utility designed to format standard keyboard characters with horizontal line overlays running directly through their center. Often used on social platforms like Instagram, TikTok, and Twitter/X that do not support standard rich-text tags (<del> or <s>) in bio inputs or comments, this tool allows creators to apply crossed-out visual formatting to represent edits, highlight corrections, or signal sarcasm.
How the Combining Stroke Logic Works
The formatting engine runs entirely client-side, applying Unicode's combining mark layering rules:
- Base Font Mapping: The engine can optionally apply a cased font style (like bold or script) before formatting the strikethrough. If no font is selected, it uses the standard input string.
- Combining Diacritical Marks: The script splits the text into individual characters and appends a combining diacritical stroke symbol after each letter (
[...base].map((c) => c + char).join("")). The system font engine stacks these symbols directly over the preceding character:- Center Strikethrough: Appends combining long stroke overlay
U+0336(̶). - Short Strikethrough: Appends combining short stroke overlay
U+0335(̵). - Tilde Strikethrough: Appends combining tilde overlay
U+0334(̴). - Double Strike: Appends two long strokes sequentially (
U+0336+U+0336).
- Center Strikethrough: Appends combining long stroke overlay
Differentiation: Strikethrough vs. Slashed Text
While both formatting techniques apply line overlays to letters, they serve distinct typographic functions:
- Strikethrough Text: Applies horizontal lines (
U+0336) directly through the middle of each character to indicate crossed-out text, corrections, or edits. - Slashed Text: Applies diagonal slash lines (
U+0338orU+0337) through the characters to create a stylized, aggressive gaming name or logo look.
Platform Constraints & Alignment Quirks
- Search Discoverability Limitations: Search engines analyze characters literally by their Unicode code values. A word like
H̶e̶l̶l̶o̶is read as a sequence of base letters and stroke lines. This prevents search indexes from matching the word to standard plain-text queries. - Byte capacity footprint: Appending combining marks doubles the byte size of the string. A standard cased letter is 1 byte, but adding a single center stroke mark (
U+0336, which occupies 2 bytes in UTF-8) increases the size to 3 bytes per letter. Be mindful of this when pasting into fields with strict size boundaries. - Varying Device Support: Modern mobile and desktop systems render combining strokes cleanly. Legacy platforms or older web interfaces may fail to align the line overlay properly, resulting in shifted lines.
Frequently Asked Questions
Common Queries
What is a strikethrough text generator?
It is a typographic utility that converts standard keyboard text by attaching combining long stroke overlay symbols from the Unicode catalog directly over each letter, creating a crossed-out look.
Where can I copy and paste crossed-out text?
You can paste the output directly into biography sections, display names, and message panels on platforms like Instagram, TikTok, Twitter/X, Discord, and Steam.
What is the difference between strikethrough and slashed text?
Strikethrough applies a horizontal line through the characters to represent edits or corrections. Slashed text applies a diagonal line through the characters to create a stylistic, retro design.
Will these crossed-out characters show up on all smartphones?
Most modern systems have robust support for combining stroke marks. Legacy platforms or older web interfaces may display placeholder boxes (□) instead.
Is this tool free and secure?
Yes. The generator is fully free, does not store or transmit any user inputs, and processes all character transformations locally inside your web browser.
Related Tools
- slashed-text — Create a distinct slashed look using combining solidus overlays.
- underline-text — Format characters with horizontal lines under the letters.
- bold-text — Generate standard mathematical bold letters for clear display emphasis.