Planck Constant

Shortcodes

Copy and paste codes for Planck Constant symbol ℎ to use in your websites, apps, blogs, and more.

Unicode
U+210E
HTML Code
ℎ
HEX Code
ℎ
CSS Code
\210E
JS/JSON
\u210E
Unix/C/PHP/JAVA
0x210E
URL-encode
%E2%84%8E
copied

Customize Planck Constant Symbol

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

Insert ℎ Planck Constant using HTML

1. Copy-paste Planck Constant directly:
<span>ℎ</span>
2. HTML Decimal Code:
<span>&#8462;</span>
3. Hexadecimal Code:
<span>&#x210E;</span>
Preview:

Add Planck Constant symbol with CSS

.planck-constant::before {
    content: '\\210E';
}
Preview: Planck Constant

Planck Constant JavaScript Code

1. Direct Symbol:
document.querySelector('.planck-constant').textContent = 'ℎ';
2. Unicode Escape for ℎ:
document.querySelector('.planck-constant').textContent = '\u210E';
Preview: