Reference Mark

Shortcodes

Copy and paste codes for Reference Mark symbol ※ to use in your websites, apps, blogs, and more.

Unicode
U+203B
HTML Code
※
HEX Code
※
CSS Code
\203B
JS/JSON
\u203B
Unix/C/PHP/JAVA
0x203B
URL-encode
%E2%80%BB
copied

Customize Reference Mark Symbol

Customize ※ symbol as you like and download Reference Mark 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 Reference Mark symbol in HTML, CSS, and JS?

Insert ※ Reference Mark using HTML

1. Copy-paste Reference Mark directly:
<span>※</span>
2. HTML Decimal Code:
<span>&#8251;</span>
3. Hexadecimal Code:
<span>&#x203B;</span>
Preview:

Add Reference Mark symbol with CSS

.reference-mark::before {
    content: '\\203B';
}
Preview: Reference Mark

Reference Mark JavaScript Code

1. Direct Symbol:
document.querySelector('.reference-mark').textContent = '※';
2. Unicode Escape for ※:
document.querySelector('.reference-mark').textContent = '\u203B';
Preview: