Medium Mathematical Space | Copy and Paste [ ] Character
The Medium Mathematical Space (Unicode U+205F) is a spacing character used in mathematical expressions and formulas. This specific space is smaller than a Three-Per-Em space, which is one-third of an em space, but it is larger than a Thin Space character.
The Unicode character U+205F is referred to as the Medium Mathematical Space (MMSP). In HTML, it can be inserted using the entity  .

Copy Medium Mathematical Space Character
Medium Mathematical Space Generator
Enter Number
Medium Mathematical Space Table
| Character Name | Medium Mathematical Space | 
|---|---|
| Unicode Code Point | U+205F | 
| HTML Code |   | 
| HTML Hex Code |   | 
| CSS Code | \205F | 
| JavaScript/Java/C | \u{205F} (JavaScript and ES6), \\u205F (Java and C) | 
FAQs
To add the Medium Mathematical Space character (U+205F) to your HTML document, you can use its HTML entity code, HTML decimal code, HTML hexadecimal code.
Using HTML Code:
Copy & Paste Medium Mathematical Space Character – Blank spacecopy.com
Using HTML entity code:
Copy & Paste Medium Mathematical Space Character – Blank  spacecopy.com
Using Hex Code:
Copy & Paste Medium Mathematical Space Character – Blank  spacecopy.com

Three-Per-Em Space vs MDSP vs Thin Space vs Hair Space
You can add the Medium Mathematical Space character before or after an element in your HTML using CSS pseudo-elements ::before and ::after. Here’s how you can do it:
To copy the code, simply double-click on it and press Ctrl+C.
CSS
.medium-mathematical-space::before {
    content: "\200B"; 
}
.medium-mathematical-space::before {
    content: "\200B"; 
  }
HTML
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        /* CSS to add Medium Mathematical Space before and after an element with class .medium-mathematical-space */
        .medium-mathematical-space::before {
            content: "\205F";
        }
        .medium-mathematical-space::after {
            content: "\205F"; 
        }
    </style>
    <title>HTML Example with Medium Mathematical Space</title>
</head>
<body>
    <h1>HTML Example with Medium Mathematical Space</h1>
    <p class="medium-mathematical-space">This is a paragraph with a Medium Mathematical Space before and after it.</p>
</body>
</html>
