<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Thushara He</title>
    <description>The latest articles on DEV Community by Thushara He (@thusharahe95).</description>
    <link>https://dev.to/thusharahe95</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4138972%2F3cac625e-c096-4728-b1ff-d660fefe7244.png</url>
      <title>DEV Community: Thushara He</title>
      <link>https://dev.to/thusharahe95</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/thusharahe95"/>
    <language>en</language>
    <item>
      <title>How Zalgo Glitch Text Works Behind the Scenes</title>
      <dc:creator>Thushara He</dc:creator>
      <pubDate>Wed, 23 Sep 2026 08:02:10 +0000</pubDate>
      <link>https://dev.to/thusharahe95/how-zalgo-glitch-text-works-behind-the-scenes-3n6l</link>
      <guid>https://dev.to/thusharahe95/how-zalgo-glitch-text-works-behind-the-scenes-3n6l</guid>
      <description>&lt;p&gt;Have you ever seen corrupted, messy, creepy text on Discord, gaming forums, or social media bios that looks like it's literally breaking out of the screen? That’s commonly known as &lt;strong&gt;Zalgo text&lt;/strong&gt; or glitch text.&lt;/p&gt;

&lt;p&gt;Here is a quick look at the mechanics behind how it actually works.&lt;/p&gt;




&lt;h3&gt;
  
  
  The Secret: Unicode Combining Characters
&lt;/h3&gt;

&lt;p&gt;Standard characters take up a fixed space. However, Unicode contains a special category called &lt;strong&gt;Combining Diacritical Marks&lt;/strong&gt; (ranging from &lt;code&gt;U+0300&lt;/code&gt; to &lt;code&gt;U+036F&lt;/code&gt;). &lt;/p&gt;

&lt;p&gt;Instead of rendering side-by-side, these marks are designed to stack vertically on top of, inside, or below the preceding letter.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Standard letter: &lt;code&gt;A&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Combining mark above: &lt;code&gt;A&lt;/code&gt; + &lt;code&gt;\u030D&lt;/code&gt; = &lt;code&gt;A̍&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Combining mark below: &lt;code&gt;A&lt;/code&gt; + &lt;code&gt;\u0323&lt;/code&gt; = &lt;code&gt;Ạ&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When a script stacks dozens of random combining diacritics on each letter, the characters overflow standard line height, creating that chaotic, cursed appearance.&lt;/p&gt;




&lt;h3&gt;
  
  
  Building a Lightweight Glitch Tool
&lt;/h3&gt;

&lt;p&gt;While building a utility tool for this effect, the primary challenge is performance—generating and copying these multi-byte Unicode strings without freezing the browser DOM.&lt;/p&gt;

&lt;p&gt;I put together a clean, fast generator that handles this in real-time without clutter or heavy scripts:&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;Test the tool here:&lt;/strong&gt; &lt;a href="https://zalgotextgen.com" rel="noopener noreferrer"&gt;Zalgo Text Generator&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It allows you to control distortion levels and copy corrupted text directly for Discord bios, gamer tags, and social captions.&lt;/p&gt;

&lt;p&gt;What are your thoughts on handling complex Unicode manipulation in modern web apps?&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>programming</category>
      <category>unicode</category>
    </item>
  </channel>
</rss>
