This generator crosses out text by hand-stitching Unicode combining marks onto each character, so the strikethrough effect travels with a plain copy and paste — even into apps that have no bold or strikethrough button. Choose a full strikethrough, a diagonal slash, or an underline. Everything runs locally in your browser.
How it works
A combining mark is a Unicode character that has no width of its own; instead it attaches to and decorates the character immediately before it. The tool walks through your text one code point at a time and appends the chosen mark after each one:
strikethrough -> base + U+0336 (COMBINING LONG STROKE OVERLAY)
slash -> base + U+0337 (COMBINING SHORT SOLIDUS OVERLAY)
underline -> base + U+0332 (COMBINING LOW LINE)
Line breaks are left alone so multi-line input keeps its layout. Because the base letters are untouched, the result is still selectable text rather than an image or rich-text style.
Tips and notes
Some platforms normalise or strip combining marks to prevent spoofing, so always preview the output where you intend to use it. The visual line length depends on the rendering font — monospace fonts give the cleanest, most even result. For accessibility, remember that screen readers may announce the combining marks oddly, so reserve this effect for decorative or informal use rather than important content.