Medium Mathematical Space

Shortcodes

Copy useful codes for medium mathematical space symbol to use in websites, apps, blogs, and docs.

Unicode
U+205F
HTML Code
 
HEX Code
 
CSS Code
\205F
JS/JSON
\u205F
Unix/C/PHP/JAVA
0x205F
URL-encode
%E2%81%9F

Customize Medium Mathematical Space

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

  

How to use Medium Mathematical Space Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span></span>
HTML Code:
<span>&#8287;</span>
HEX Code:
<span>&#x205F;</span>

Add with CSS

.medium-mathematical-space::before {
  content: '\\205F';
}

Set it in JavaScript

document.querySelector('.medium-mathematical-space').textContent = '';
copied