Information Source

Shortcodes

Copy useful codes for information source symbol ℹ to use in websites, apps, blogs, and docs.

Unicode
U+2139
HTML Code
ℹ
HTML Entity
&info;
HEX Code
ℹ
CSS Code
\2139
JS/JSON
\u2139
Unix/C/PHP/JAVA
0x2139
URL-encode
%E2%85%B9

Customize Information Source

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

  

How to use Information Source Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ℹ</span>
HTML Code:
<span>&#8505;</span>
HTML Entity:
<span>&info;</span>
HEX Code:
<span>&#x2139;</span>

Add with CSS

.information-source::before {
  content: '\\2139';
}

Set it in JavaScript

document.querySelector('.information-source').textContent = 'ℹ';
copied