Narrow No-break Space

Shortcodes

Copy useful codes for narrow no-break space symbol to use in websites, apps, blogs, and docs.

Unicode
U+202F
HTML Code
 
HEX Code
 
CSS Code
\202F
JS/JSON
\u202F
Unix/C/PHP/JAVA
0x202F
URL-encode
%E2%80%AF

Customize Narrow No-break Space

Customize , download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Narrow No-break Space Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span></span>
HTML Code:
<span>&#8239;</span>
HEX Code:
<span>&#x202F;</span>

Add with CSS

.narrow-no-break-space::before {
  content: '\\202F';
}

Set it in JavaScript

document.querySelector('.narrow-no-break-space').textContent = '';
copied