Unicode Space
2025-02-16
Introducion
Some online chat clients, like WhatsApp, WeChat and Identity V, reject empty as well as space message.
But once you wanna send blank message, there’s a workaround for WhatsApp and WeChat: just use Unicode Spaces
Workaround
That’s due to WeChat’s isspace
only checks ASCII space (U+0020) but not others.
One of the most commonly used is U+2000 ("\u2000" in python
):
not worked for Identity V
…
A full list
Unicode | HTML | Description | Example |
---|---|---|---|
U+0020 |   | Space | [ ] |
U+00A0 |   | No-Break Space | [ ] |
U+2000 |   | En Quad | [ ] |
U+2001 |   | Em Quad | [ ] |
U+2002 |   | En Space | [ ] |
U+2003 |   | Em Space | [ ] |
U+2004 |   | Three-Per-Em Space | [ ] |
U+2005 |   | Four-Per-Em Space | [ ] |
U+2006 |   | Six-Per-Em Space | [ ] |
U+2007 |   | Figure Space | [ ] |
U+2008 |   | Punctuation Space | [ ] |
U+2009 |   | Thin Space | [ ] |
U+200A |   | Hair Space | [ ] |
U+2028 | 
 | Line Separator | [] |
U+205F |   | Medium Mathematical Space | [ ] |
U+3000 |   | Ideographic Space | [ ] |