Fisheye

Shortcodes

Copy and paste codes for Fisheye symbol ◉ to use in your websites, apps, blogs, and more.

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

Customize Fisheye Symbol

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

Insert ◉ Fisheye using HTML

1. Copy-paste Fisheye directly:
<span>◉</span>
2. HTML Decimal Code:
<span>&#9673;</span>
3. Hexadecimal Code:
<span>&#x25C9;</span>
Preview:

Add Fisheye symbol with CSS

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

Fisheye JavaScript Code

1. Direct Symbol:
document.querySelector('.fisheye').textContent = '◉';
2. Unicode Escape for ◉:
document.querySelector('.fisheye').textContent = '\u25C9';
Preview: