Close Up

Shortcodes

Copy and paste codes for Close Up symbol ⁐ to use in your websites, apps, blogs, and more.

Unicode
U+2050
HTML Code
⁐
HEX Code
⁐
CSS Code
\2050
JS/JSON
\u2050
Unix/C/PHP/JAVA
0x2050
URL-encode
%E2%81%90
copied

Customize Close Up Symbol

Customize ⁐ symbol as you like and download Close Up as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Close Up symbol in HTML, CSS, and JS?

Insert ⁐ Close Up using HTML

1. Copy-paste Close Up directly:
<span>⁐</span>
2. HTML Decimal Code:
<span>&#8272;</span>
3. Hexadecimal Code:
<span>&#x2050;</span>
Preview:

Add Close Up symbol with CSS

.close-up::before {
    content: '\\2050';
}
Preview: Close Up

Close Up JavaScript Code

1. Direct Symbol:
document.querySelector('.close-up').textContent = '⁐';
2. Unicode Escape for ⁐:
document.querySelector('.close-up').textContent = '\u2050';
Preview: