What it was designed for
Legacy halfwidth Korean text encoding. Unicode assigns it to the Halfwidth and Fullwidth Forms block and to General Category Lo, which is Letter, other.
In practice U+FFA0 is a narrower alternative to U+3164 that folds to the same codepoint under NFKC.
Does U+FFA0 work as invisible text?
Partly. It survives trim() and changes under NFKC. ItsWhite_Space property is No, so no trimming function removes it, and a name field accepts it.
NFKC folds it to U+1160. A platform that normalizes usernames — which most do, to stop two visually identical names being registered separately — stores that other codepoint instead. The name still displays blank, and the stored value differs from what you pasted.
How it compares to the alternatives
Four properties decide which invisible character to use, and they separate these three cleanly. Halfwidth Hangul Filler is shown against the plain space and against the character most often recommended for blank names.
| Property | U+FFA0 | U+0020 | U+3164 |
|---|---|---|---|
| Category | Lo | Zs | Lo |
| Removed by trim() | No | Yes | No |
| NFKC | → U+1160 | stable | → U+1160 |
| Rendered width | Narrow | Narrow | Wide |
| UTF-8 bytes | 3 | 1 | 3 |
| Works in a name field | No | No | No |
Halfwidth Hangul Filler survives trimming like the reference character and differs from it under normalization.
How to type U+FFA0
To insert U+FFA0, copy it from the button above. Copying is the only method that behaves identically on every operating system and in every application.
Copy and paste
Use the copy button at the top of this page. Paste into the destination field directly. If the field rejects it, paste into a plain-text editor first and copy from there — rich-text editors and some mobile keyboards rewrite pasted content.
In code
Insert it by escape sequence rather than by pasting a character no reviewer can see. A literal invisible character in a source file is unreadable in review and survives copy-paste into places it was never meant to reach.
- JavaScript and TypeScript —
"\uFFA0" - Python —
"\uFFA0" - HTML —
ᅠorᅠ - CSS
content—"\FFA0" - URL encoding —
%EF%BE%A0
Keyboard entry
Keyboard methods exist and none is reliable across systems. On Linux and in most GTK applications, Ctrl+Shift+U followed by ffa0 and Enter inserts the character. On macOS, the Unicode Hex Input source acceptsOption plus the four hex digits, and it must be enabled in Keyboard settings first.
Windows Alt codes do not cover this range. The Alt plus numeric-keypad method addresses legacy code pages rather than Unicode codepoints, so it cannot produce U+FFA0. Copying remains the dependable method on every platform.
Why U+FFA0 fails, and what to do
It fails when a platform normalizes with NFKC, which silently replaces it with U+1160. Everything else about the character is stable, so a failure almost always traces to that one condition.
The field clears itself after saving. The value was trimmed to an empty string and the platform restored the previous one. Move to a character withWhite_Space=No — U+3164 or U+2800.
A box or question mark appears. The font has no glyph at U+FFA0, so the renderer drew .notdef. The stored value is correct and only the display is wrong. U+2800 has the widest font coverage of the invisible characters.
The value changes between saving and reloading. The platform normalized it. Halfwidth Hangul Filler folds to U+1160 under NFKC, so that is the codepoint now stored.
Is it a security risk?
Yes, in source code and identifiers, and no in ordinary text. U+FFA0 is a valid JavaScript identifier character, so it shares the invisible-variable risk of U+3164, to which it normalizes.
The exposure is limited to contexts where an invisible character changes meaning without changing appearance. Pasting U+FFA0 into a username, a bio or a chat message creates no such risk, because nothing downstream interprets it.
To audit text you did not write, match the category with\p{Lo} rather than searching for this codepoint alone.
How to find it in existing text
Match it by category rather than by codepoint. The regex\p{Lo} matches Halfwidth Hangul Filler and every other character in its category, and it keeps working across Unicode releases.
To confirm whether a specific string contains it, paste the string into the invisible text detector, which lists every codepoint with its category and byte length.