Fisheye

Shortcodes

Copy useful codes for fisheye symbol ◉ to use in websites, apps, blogs, and docs.

Unicode
U+25C9
HTML Code
◉
HEX Code
◉
CSS Code
\25C9
JS/JSON
\u25C9
Unix/C/PHP/JAVA
0x25C9
URL-encode
%E2%97%89

Customize Fisheye

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

  

How to use Fisheye Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◉</span>
HTML Code:
<span>&#9673;</span>
HEX Code:
<span>&#x25C9;</span>

Add with CSS

.fisheye::before {
  content: '\\25C9';
}

Set it in JavaScript

document.querySelector('.fisheye').textContent = '◉';
copied