Shrug Kaomoji Japanese Faces Blog

Shrug Emoji Text

Copy the shrug emoji text ¯\_(ツ)_/¯, then save it as a shortcut so you can type it anywhere.

The shrug emoji as text

The shrug text ¯\_(ツ)_/¯ is the most reliable way to say "I don't know" or "whatever" online. Unlike a picture emoji, this text emoji is made of characters, so it copies cleanly into chats, documents, terminals and code — and it never changes shape between devices.

Copy examples by context

Set up shrug text replacement (per device)

A text replacement expands a short trigger word into the full shrug as you type. Set it once and the shrug is one word away in every app:

Keyboard shortcut alternative (Windows & Mac)

On Windows, AutoHotkey gives you a true global hotstring. Save this one-line script (works in both AutoHotkey v1 and v2) and run it:

::shrug::¯\_(ツ)_/¯

Now typing shrug followed by a space anywhere expands to the full shrug. On Mac, the same idea works with an Alfred or Raycast snippet: set the keyword to shrug and the snippet text to ¯\_(ツ)_/¯.

Keep the copy tool useful after today

If you only need the shrug once, copy it above. If you use it every week, save shrug as a replacement phrase and bookmark this page for variants and Markdown fixes. That keeps the classic text shrug available without searching again.

Why the backslash sometimes breaks

The shrug contains two backslashes, and some apps treat \ as an escape character. Typical behavior by app:

Byte-level encoding: why old systems mangle the shrug

¯\_(ツ)_/¯ isn't nine bytes — it's 13 bytes once encoded in UTF-8, because two of its characters live outside the single-byte ASCII range and need multiple bytes each:

Copying vs typing: which is actually faster

For a one-off use, copying from this page (or any shrug tool) beats typing every time — there's no keyboard shortcut for the katakana ツ or the macron ¯ on a standard layout, so 'typing from scratch' really means hunting through a special-character picker, which takes longer than a single click here. Text replacement (set up once, as covered above) is the better choice once you're using the shrug regularly, since after the one-time setup it becomes genuinely faster than copy-paste — a few keystrokes versus switching to a browser tab. For the complete step-by-step for every operating system, see how to type the shrug emoji.

Why keyboard layout affects how much copy-paste actually helps

How much this page's copy button saves you depends partly on your physical keyboard layout, not just your OS. On a US QWERTY layout, backslash and parentheses sit on dedicated keys, so the ASCII portion of the shrug is at least typeable in principle — only the macron and katakana genuinely require a picker or paste. On AZERTY (France, Belgium) and several other European layouts, backslash isn't on a direct key at all — it requires a modifier combination (commonly AltGr) that many users never memorize, since it's rarely needed outside programming. That makes copy-paste, or the text-replacement shortcuts above, a bigger practical time-saver on those layouts than on a standard US keyboard, where a determined typist could technically peck out most of the shrug's punctuation by hand.

Storing the shrug for later without a shortcut

If setting up a text replacement feels like overkill, a lighter option is simply saving ¯\_(ツ)_/¯ somewhere you already check often — a pinned note, a phone's clipboard-history app (both iOS and Android now ship a system clipboard history you can paste from), or a browser bookmark to this page. None of these require any settings changes, and all three are faster than retyping the character sequence from memory, which is genuinely error-prone given how easy it is to miscount the underscores or backslashes.

FAQ

What is the shrug emoji text?

The shrug emoji text is ¯\_(ツ)_/¯ — a kaomoji built from a Japanese katakana 'tsu' (ツ) for the face, macron marks (¯) for the arms, and backslashes and parentheses for the body. Because it is plain text, you can paste it anywhere.

Does shrug text work in Gmail?

Yes. Gmail on web, iOS and Android treats ¯\_(ツ)_/¯ as ordinary Unicode text, so it sends and displays unchanged with no rich-text stripping. The same applies to Outlook and Apple Mail.

Why does my shrug come out as ¯(ツ)/¯?

That happens in Markdown apps (GitHub, Reddit, Discord) where a backslash before an underscore is read as an escape character and removed. Wrap the shrug in backticks, or escape each backslash as \\, and it pastes intact.

Does the shrug text work on phones?

The shrug is broadly supported on iPhone, Android, tablets and desktops because it uses standard Unicode characters. Its glyph shape and spacing can vary by font, and Markdown may require the backslash to be escaped.

What shortcut word should I use for shrug text?

Use a word you rarely type by accident, such as shrug, shruggie or shrugtext. The common choice is shrug because it is easy to remember and works across iPhone, Android, Mac snippet tools and Windows text expanders.

Why does the shrug come out as garbled boxes or question marks (mojibake)?

That's a character-encoding mismatch, not a copy error. If a system reads the shrug's UTF-8 bytes using a legacy single-byte encoding like Windows-1252 or Latin-1, the multi-byte characters (¯, ツ) get split into unrelated symbols — classic mojibake such as ¯ or ツ. It shows up mainly in old CSV exports, legacy CMS text fields, and some SMS gateways. The fix is to force UTF-8 on the receiving system; the shrug text itself is not corrupted.

Related