Reference Mark

Shortcodes

Copy useful codes for reference mark symbol ※ to use in websites, apps, blogs, and docs.

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

Customize Reference Mark

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

  

How to use Reference Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>※</span>
HTML Code:
<span>&#8251;</span>
HEX Code:
<span>&#x203B;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.reference-mark').textContent = '※';
copied